Пример #1
0
 public IExpression GetOrFilter <T>(string fieldName, string operatorName, object value)
 {
     return(new Expression(OperatorFactory.GetOperator(Schema.FILTER_OP_OR), GetField <T>(fieldName), OperatorFactory.GetOperator(operatorName), value));
 }
Пример #2
0
 public IExpression GetFilter <T>(string fieldName, string operatorName, object value)
 {
     return(new Expression(GetField <T>(fieldName), OperatorFactory.GetOperator(operatorName), value));
 }