예제 #1
0
 /// <summary>
 /// Filter documents after group by pipe according to predicate expression (requires GroupBy and support only one Having)
 /// </summary>
 public ILiteQueryableAsync <T> Having(BsonExpression predicate)
 {
     _wrappedQuery.Having(predicate);
     return(this);
 }