示例#1
0
 public ReadStatement(IExpression resource, ThenWith thenWith)
     : base(resource)
 {
     this.thenWith = thenWith;
 }
示例#2
0
 public FetchManyStatement(CategoryType type, IExpression filter, IExpression first, IExpression last, List <string> include, OrderByClauseList orderBy, ThenWith thenWith)
     : base(type, filter, first, last, include, orderBy)
 {
     this.thenWith = thenWith;
 }
示例#3
0
 public WriteStatement(IExpression content, IExpression resource, ThenWith thenWith)
 {
     this.content  = content;
     this.resource = resource;
     this.thenWith = thenWith;
 }
示例#4
0
 public FetchOneStatement(CategoryType type, IExpression predicate, List <String> include, ThenWith thenWith)
     : base(type, predicate, include)
 {
     this.thenWith = thenWith;
 }