예제 #1
0
 public Return(
     ExpressionList returnItems,
     OrderBy?orderBy = null,
     Skip?skip       = null,
     Limit?limit     = null)
 {
     Items = new ProjectionBody(returnItems, orderBy, skip, limit);
 }
예제 #2
0
 public With(
     ExpressionList returnItems,
     OrderBy orderBy,
     Skip skip,
     Limit limit,
     Where where)
 {
     Body  = new ProjectionBody(returnItems, orderBy, skip, limit);
     Where = where;
 }