예제 #1
0
파일: Expression.cs 프로젝트: carbon/Data
 public static BetweenExpression Between(Symbol propertyName, Constant start, Constant end)
      => new BetweenExpression(propertyName, start, end);
예제 #2
0
파일: Expression.cs 프로젝트: carbon/Data
 public static Expression Contains(Symbol propertyName, Constant value)
   => new FunctionExpression("contains", propertyName, value);
예제 #3
0
파일: Expression.cs 프로젝트: carbon/Data
 public static Expression StartsWith(Symbol propertyName, Constant value)
     => new FunctionExpression("startsWith", propertyName, value);
예제 #4
0
파일: Expression.cs 프로젝트: carbon/Data
 public BetweenExpression(Expression property, Constant start, Constant end)
 {
     Property = property;
     Start = start;
     End = end;
 }