web-dev-qa-db-ja.com

「ない」のラムダ式?

私は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))
_
20
angel

IDがcodesarrayにない選択された詳細コレクションアイテム:

detailcollection.Where (x=> !codesarray.Contains(x.ope_idsku))
38
Zbigniew