私は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))
_
IDがcodesarray
にない選択された詳細コレクションアイテム:
detailcollection.Where (x=> !codesarray.Contains(x.ope_idsku))