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)); }
public IExpression GetFilter <T>(string fieldName, string operatorName, object value) { return(new Expression(GetField <T>(fieldName), OperatorFactory.GetOperator(operatorName), value)); }