如何创建 Linq To Entities 表达式

发布于 2024-08-26 12:25:45 字数 603 浏览 7 评论 0原文

嗨,我正在使用 Linq To Entities,我想将其转换

return db.Products
         .Where(p => p.idUser.Equals(id) && 
                     p.Category.Genre.Any(g => g.visible))

为类似的东西,

Func<Genre, bool> expr = g => g.visible

return db.Products
         .Where(p => p.idUser.Equals(id) && 
                     p.Category.Genre.Any(expr))

这样我就可以用这样的东西添加更多的复杂性,

Func<Genre, bool> expr = g => g.visible
expr += g => g.position < 5

但我总是有一个“内部 1025 错误 .NET”。 有人可以帮我吗? 谢谢。

HI, I'm using Linq To Entities and I'd like to convert this

return db.Products
         .Where(p => p.idUser.Equals(id) && 
                     p.Category.Genre.Any(g => g.visible))

into something like

Func<Genre, bool> expr = g => g.visible

return db.Products
         .Where(p => p.idUser.Equals(id) && 
                     p.Category.Genre.Any(expr))

so I can add more complexity with something like this

Func<Genre, bool> expr = g => g.visible
expr += g => g.position < 5

But I always have an 'internal 1025 error .NET'.
Can anyone help me, please?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧时光的容颜 2024-09-02 12:25:45

您需要使用表达式,而不是委托。您可以使用 Joseph Albahari 的 PredicateBuilder 类来构建你的谓词动态:

Expression<Func<Genre, bool>> expr = g => g.visible;
expr = expr.And(g => g.position < 5);

You need to use Expressions, not delegates. You can use the PredicateBuilder class by Joseph Albahari to build your predicate dynamically :

Expression<Func<Genre, bool>> expr = g => g.visible;
expr = expr.And(g => g.position < 5);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文