如何“不”实体框架的 lambda 表达式

发布于 2024-09-24 10:53:41 字数 288 浏览 1 评论 0原文

鉴于以下内容,

Expression<Func<T,bool>> matchExpression;

我如何创建另一个与现有表达式“不同”的表达式。

我已经尝试过

Expression<Func<T, bool>> func3 = (i) => !matchExpression.Invoke(i);

,但这不受实体框架支持......

问候

Given the following

Expression<Func<T,bool>> matchExpression;

How can i create another expression that is a 'not' of the existing one.

i have tried

Expression<Func<T, bool>> func3 = (i) => !matchExpression.Invoke(i);

but this is not supported by the entity framework...

Regards

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

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

发布评论

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

评论(1

淡淡的优雅 2024-10-01 10:53:41

您必须重新创建一个新的 lambda,并否定原始 lambda 的主体:

Expression<Func<T, bool>> not = Expression.Lambda<Func<T, bool>> (
    Expression.Not (matchExpression.Body),
    matchExpression.Parameters [0]);

You have to recreate a new lambda, and negate the body of the original one:

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