我有一个detailcollection
集合,其中每个细节都有
code, price, name
带有一些代码的字符串
string codes = "1,2,3";
我知道我可以使用string.Split()
string[] codesarray = codes.Split(',');
但我怎样才能获得不在codes
的产品?
// the idea I have, but I would not like to have a loop
for (int i = 0; i < codesarray.Length; i++)
{
detailcollection.Where(x => x.ope_idsku == codesarray[i])
}
我想要像:
detailcollection.Where(x => x.ope_idsku not in (codesarray))
答案 0 :(得分:37)
选定的详细信息收集项目,哪些ID不在codesarray
:
detailcollection.Where (x=> !codesarray.Contains(x.ope_idsku))