gpt4 book ai didi

c# - where not in () statement with lambda

转载 作者:太空狗 更新时间:2023-10-29 20:57:07 24 4
gpt4 key购买 nike

有谁知道我们如何在 lambda 中使用 where not in() 语句?

this is where id in() statement

public List<abc> GetList(List<string> ID)
{
return db.abcs.Where(a => ID.Contains(a.id)).ToList<abc>();
}

我想知道它是如何相反的。 “哪里的 id 不在……”

最佳答案

只需添加一个 not (!) 运算符:

// Not In
return db.abcs.Where(a => !ID.Contains(a.id)).ToList();

关于c# - where not in () statement with lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9213304/

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