Exemple #1
0
 public ReadStatement(IExpression resource, ThenWith thenWith)
     : base(resource)
 {
     this.thenWith = thenWith;
 }
Exemple #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;
 }
Exemple #3
0
 public WriteStatement(IExpression content, IExpression resource, ThenWith thenWith)
 {
     this.content  = content;
     this.resource = resource;
     this.thenWith = thenWith;
 }
Exemple #4
0
 public FetchOneStatement(CategoryType type, IExpression predicate, List <String> include, ThenWith thenWith)
     : base(type, predicate, include)
 {
     this.thenWith = thenWith;
 }