Beispiel #1
0
 public static BetweenExpression Between(Symbol propertyName, Constant start, Constant end)
      => new BetweenExpression(propertyName, start, end);
Beispiel #2
0
 public static Expression Contains(Symbol propertyName, Constant value)
   => new FunctionExpression("contains", propertyName, value);
Beispiel #3
0
 public static Expression StartsWith(Symbol propertyName, Constant value)
     => new FunctionExpression("startsWith", propertyName, value);
Beispiel #4
0
 public BetweenExpression(Expression property, Constant start, Constant end)
 {
     Property = property;
     Start = start;
     End = end;
 }