Visual Studio has a useful 'Task List' feature that lists locations in the code marked with a “TODO”, this feature allows you track what you need to be doing.
All you need to do is to add TODO comments in your code:
//TODO:What if there are two conditions in the expression??
if (this._whereClausefields.Count > 0)
{
StringBuilder expressionBuilder = new StringBuilder();