表达式调用任何方法反向
我正在尝试手动编写这个 linq 句子:
item => !item.Matches.Any(m => m.MarketPlace == "Amazon");
我知道调用 Any 方法,但如何执行相反的操作?
...
...
var anyCall = Expression.Call(typeof(Enumerable), "Any", new[] { modelType }, models, lambdaExp);
return Expression.Lambda<Func<T, bool>>(anyCall, item);
此代码 sql 输出“存在”。如何sql输出“不存在”?
I'm trying to write manually this linq sentence:
item => !item.Matches.Any(m => m.MarketPlace == "Amazon");
I know calling the Any method, but how do I do the reverse?
...
...
var anyCall = Expression.Call(typeof(Enumerable), "Any", new[] { modelType }, models, lambdaExp);
return Expression.Lambda<Func<T, bool>>(anyCall, item);
this code sql outputs 'Exists'. How to sql outputs 'Not Exists' ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,反向让我想到重新排序。如果你想否定一个表达式,你可以这样做:
在调试视图中
falseExpression
is!True
。回答你的问题:
应该能解决问题。
In this context reverse makes me think of reordering. If you want to negate an expression you can do it like so:
In debug view
falseExpression
is!True
.To answer your question:
should do the trick.