如何转换表达式> 到谓词
我有一个接受 Expression
作为参数的方法。 我想将它用作 List.Find() 方法中的谓词,但我似乎无法将其转换为 List 所采用的谓词。 你知道一个简单的方法来做到这一点吗?
public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, new()
{
var list = GetList<T>();
var predicate = [what goes here to convert expression?];
return list.Find(predicate);
}
更新
结合tvanfosson和280Z28的答案,我现在使用这个:
public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, new()
{
var list = GetList<T>();
return list.Where(expression.Compile()).ToList();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑:根据评论,我们对第二行有更好的答案:
Edit: per the comments we have a better answer for the second line:
尚未提及的另一个选项:
这会生成与以下相同的 IL
Another options which hasn't been mentioned:
This generates the same IL as
我没有看到这种方法的必要性。 只需使用Where()即可。
或者更好的是,将表达式定义为 lambda 内联。
I'm not seeing the need for this method. Just use Where().
Or even better, define the expression as a lambda inline.