У меня есть массив ... и мне нужно исключить все элементы в этом массиве строк из masterList.customField
, как показано ниже
string[] excludeItem = {"a","b","c"};
CustomDTO[] masterList = service.LoadMasterList();
masterList.Where(c=> masterList.customField NOT IN excludeItem
Как мне достичь части NOT IN выше?