如何在 C# 中使用 Expression.IfThenElse
我在存储库中有一个方法:
Query<T>(System.Linq.Expressions.Expression<Func<T,bool>> function)
当我调用它时,我想根据条件使用不同的表达式。
我尝试过:
m_Repository.Query<MyObject>(x => x.Infos.Count > 1 ?
x.Infos.Any(y => y.Info.Name.StartsWith(s)) :
x.Name.StartsWith(s));
但它总是执行 else 部分。我想我必须使用 Expression.IfThenElse,但我无法让它工作。关于如何执行此操作有什么建议吗?
谢谢!
I have a method in a repository:
Query<T>(System.Linq.Expressions.Expression<Func<T,bool>> function)
When i call it, I want to use different Expressions based on a condition.
I tried:
m_Repository.Query<MyObject>(x => x.Infos.Count > 1 ?
x.Infos.Any(y => y.Info.Name.StartsWith(s)) :
x.Name.StartsWith(s));
but then it always executes the else part. I figured I had to use Expression.IfThenElse, but I cannot make it work. Any suggestions on how to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你试过Expression.Condition吗
Have you tried Expression.Condition