Exemplo n.º 1
0
        public Update <T> Where(ColumnPredicate predicate)
        {
            if (predicate != null)
            {
                WherePredicates.Add(predicate);
            }

            return(this);
        }
Exemplo n.º 2
0
 public void AddWherePredicate(Expression <Func <TDTO, bool> > predicate)
 {
     WherePredicates.Add(predicate);
 }