gpt4 book ai didi

c# - LinQ 到实体 : Doing the opposite query

转载 作者:太空宇宙 更新时间:2023-11-03 18:50:35 25 4
gpt4 key购买 nike

我是这样写的:


var destinations = db.DestinationDetails.
Where(dd => dd.Language.Lang == "en-US" &&
dd.Destination.Client.Any(c => c.Email == "abc@yahoo.com"));

如何检索电子邮件为 abc@yahoo.com 的客户没有的目的地详细信息?

这行不通:


var destinations = db.DestinationDetails.
Where(dd => dd.Language.Lang == "en-US" &&
dd.Destination.Client.Any(c => c.Email != "abc@yahoo.com"));

谢谢!

最佳答案

我认为您想使用 All 而不是 Any:

dd.Destination.Client.All(c => c.Email != "abc@yahoo.com")

关于c# - LinQ 到实体 : Doing the opposite query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/668997/

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