如何使用表达式>在 Linq to EF where 条件下?
关于此主题已经存在一些问题(例如实体框架中的Expression.Invoke?),但是,我找不到适合我的具体情况的答案。 我想定义一个这样的方法:
public IQueryable<Customer> GetCustomers(Expression<Func<Customer, bool>> condition)
{
return from p in ctx.Customers.AsExpandable()
where condition.Compile()(p)
select p;
}
AsExpandable 方法来自 LinqKit(正如前面提到的线程中建议的那样)。 但是,当我尝试像他一样调用我的方法时:
var customers = GetCustomers(c => c.ID == 1);
它会抛出 InvalidCastException:
无法将“System.Linq.Expressions.InstanceMethodCallExpressionN”类型的对象转换为“System.Linq.Expressions.LambdaExpression”类型。 我做错了什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要使用表达式树,则需要将表达式树本身传递给 LINQ 方法:
If you want to use an expression tree, you need to pass the expression tree itself to the LINQ method: