如何转换表达式> 到谓词

发布于 2024-07-29 19:41:12 字数 720 浏览 8 评论 0 原文

我有一个接受 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();
}

I have a method that accepts an Expression<Func<T, bool>> as a parameter. I would like to use it as a predicate in the List.Find() method, but I can't seem to convert it to a Predicate which List takes. Do you know a simple way to do this?

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);
}

Update

Combining answers from tvanfosson and 280Z28, I am now using this:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

温柔戏命师 2024-08-05 19:41:12
Func<T, bool> func = expression.Compile();
Predicate<T> pred = t => func(t);

编辑:根据评论,我们对第二行有更好的答案:

Predicate<T> pred = func.Invoke;
Func<T, bool> func = expression.Compile();
Predicate<T> pred = t => func(t);

Edit: per the comments we have a better answer for the second line:

Predicate<T> pred = func.Invoke;
提笔落墨 2024-08-05 19:41:12

尚未提及的另一个选项:

Func<T, bool> func = expression.Compile();
Predicate<T> predicate = new Predicate<T>(func);

这会生成与以下相同的 IL

Func<T, bool> func = expression.Compile();
Predicate<T> predicate = func.Invoke;

Another options which hasn't been mentioned:

Func<T, bool> func = expression.Compile();
Predicate<T> predicate = new Predicate<T>(func);

This generates the same IL as

Func<T, bool> func = expression.Compile();
Predicate<T> predicate = func.Invoke;
甜妞爱困 2024-08-05 19:41:12

我没有看到这种方法的必要性。 只需使用Where()即可。

 var sublist = list.Where( expression.Compile() ).ToList();

或者更好的是,将表达式定义为 lambda 内联。

 var sublist = list.Where( l => l.ID == id ).ToList();

I'm not seeing the need for this method. Just use Where().

 var sublist = list.Where( expression.Compile() ).ToList();

Or even better, define the expression as a lambda inline.

 var sublist = list.Where( l => l.ID == id ).ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文