如何在不调用的情况下合并两个 C# Lambda 表达式?
我想合并以下表达式:
// example class
class Order
{
List<OrderLine> Lines
}
class OrderLine { }
Expression<Func<Order, List<OrderLine>>> selectOrderLines = o => o.Lines;
Expression<Func<List<OrderLine>, Boolean>> validateOrderLines = lines => lines.Count > 0;
// now combine those to
Expression<Func<Order, Boolean>> validateOrder;
我使用 selectOrderLines 上的调用并将结果提供给 validateOrderLines 使其工作,但因为我在实体框架中使用这些表达式,所以我必须实际创建一个干净的表达式应该代表:
Expression<Func<Order, Boolean>> validateOrder = o => o.Lines.Count > 0;
我该怎么做?
I'd like to merge the following Expressions:
// example class
class Order
{
List<OrderLine> Lines
}
class OrderLine { }
Expression<Func<Order, List<OrderLine>>> selectOrderLines = o => o.Lines;
Expression<Func<List<OrderLine>, Boolean>> validateOrderLines = lines => lines.Count > 0;
// now combine those to
Expression<Func<Order, Boolean>> validateOrder;
I got it to work using a invoke on the selectOrderLines and supplying the result to the validateOrderLines, but because I'm using these expressions in Entity Framework, I have to actually create a clean expression which should represent:
Expression<Func<Order, Boolean>> validateOrder = o => o.Lines.Count > 0;
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最优雅的方法是使用 表达式访问者。 特别是,这个MSDN 博客条目 描述了如何使用它来组合谓词(使用布尔 And 或 Or)而不使用 Invoke。
已编辑 意识到布尔组合不是您想要的,我编写了一个 ExpressionVisitor 的示例用法来解决您的特定问题:
The most elegant way is to use an Expression Visitor. In particular, this MSDN Blog Entry describes how to use it to combine predicates (using boolean And or Or) without Invoke.
EDITED Having realized boolean combination is not what you wanted, I wrote a sample usage of ExpressionVisitor that solves for your particular problem:
此扩展有效:
示例使用:
This extension works:
Sample using: