コード例 #1
0
ファイル: QueryObject.cs プロジェクト: ssickles/archive
 public QueryObject(QueryExpression Conditions, List<SortObject> Sorts, int PageSize, int Offset)
 {
     this.Conditions = Conditions;
     this.Sorts = Sorts;
     this.PageSize = PageSize;
     this.Offset = Offset;
 }
コード例 #2
0
ファイル: QueryExpression.cs プロジェクト: ssickles/archive
 internal QueryExpression(bool Negated, ExpressionType Type, string FieldName, Operator? Operator, string Value, QueryExpression LeftExpression, QueryOperand Operand, QueryExpression RightExpression)
 {
     this.Negated = Negated;
     this.Type = Type;
     this.FieldName = FieldName;
     this.Operator = Operator;
     this.Value = Value;
     this.LeftExpression = LeftExpression;
     this.Operand = Operand;
     this.RightExpression = RightExpression;
 }
コード例 #3
0
ファイル: QueryExpression.cs プロジェクト: ssickles/archive
 internal QueryExpression(QueryExpression FirstExpression, QueryOperand Operand, QueryExpression SecondExpression)
 {
     this.Type = ExpressionType.Complex;
     this.LeftExpression = FirstExpression;
     this.Operand = Operand;
     this.RightExpression = SecondExpression;
 }