当我最终尝试运行查询时,我得到了以下错误
类型为"IsFalse"的未知LINQ表达式
这是代码
private static IQueryable<T> QueryMethod<T>(
IQueryable<T> query,
QueryableRequestMessage.WhereClause.Rule rule,
Type type,
string methodName,
Expression property,
Expression value,
string op,
ParameterExpression parameter
) where T : class
{
var methodInfo = type.GetMethod(methodName, new[] { type });
var call = Expression.Call(property, methodInfo, value);
var expression = rule.Op.Equals(op)
? Expression.Lambda<Func<T, bool>>(call, parameter)
: Expression.Lambda<Func<T, bool>>(Expression.IsFalse(call), parameter);
query = query.Where(expression);
return query;
}
重要变量具有以下值
query: an IQueryable that I am building up
type: String
methodName: "EndsWith"
rule.Op: "ne" //Not Ends With
op: "ew"
value: "somestring"
基本上,如果操作和规则。Op相等,它只运行methodName(EndsWith)并相应地进行筛选。然而,如果它们不同,我想否定这个结果。
看起来你没有做错什么;您的LINQ提供程序根本不知道如何处理Expression.IsFalse
返回的表达式树实例,所以它会抱怨。
您可以尝试自己手动构建"is false"表达式树,它应该可以工作:
Expression.Lambda<Func<T, bool>>(
Expression.Equal(call, Expression.Constant(false)),
parameter)