Beispiel #1
0
 public QueryFilter <T> And(Expression <Func <T, bool> > query)
 {
     _queryObject.And(query);
     return(this);
 }
Beispiel #2
0
 public QueryFluent <T> Where(QueryObject <T> queryObject)
 {
     _filter.And(queryObject);
     return(this);
 }