public Update <T> Where(ColumnPredicate predicate) { if (predicate != null) { WherePredicates.Add(predicate); } return(this); }
public void AddWherePredicate(Expression <Func <TDTO, bool> > predicate) { WherePredicates.Add(predicate); }