Lambda Expression pour "pas dans"?

J'ai un detailcollection collection dans laquelle chaque détail a

code, price, name

Et une chaîne avec certains codes

string codes = "1,2,3";

Je sais que je peux obtenir un tableau à l'aide de string.Split()

string[] codesarray = codes.Split(',');

Mais comment puis-je obtenir des produits n'étant pas en 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])
}

Je voudrais quelque chose comme:

detailcollection.Where(x => x.ope_idsku not in (codesarray))

source d'informationauteur angel