20

我有一个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))
4

1 回答 1

42

id 不在的选定详细信息集合项codesarray

detailcollection.Where (x=> !codesarray.Contains(x.ope_idsku))
于 2013-03-22T16:11:43.587 回答