gpt4 book ai didi

linq-to-entities - Linq to Entities中的“Select NOT IN”子句

转载 作者:行者123 更新时间:2023-12-03 13:23:08 25 4
gpt4 key购买 nike

有没有办法使用Linq to Entities中的“ NOT IN(select XXX ...)”子句?
我发现的所有问题都与对象列表(IN(1,2,3))有关,但我想使用以下语法生成查询:

select * from table1 where field1 not in (select subfield from subtable)  


请注意,这是Linq to Entities,而不是Linq to Sql ...

可能吗?

谢谢!

最佳答案

像这样:

from c in db.Customers
where !db.Products.Any(p => p.ProductID == c.ProductID)
select c;

关于linq-to-entities - Linq to Entities中的“Select NOT IN”子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2713864/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com