Kwerenda Linq do wykluczenia z listy, gdy wartość właściwości listy innego typu jest równa?

Mam listę typu Fee, z której muszę wykluczyć te, które mają identyfikator, który istnieje na innej liście typu int.

List<int> ExcludedFeeIDs = new List<int>{1,2,3,4};

List<Fee> MyFees = (from c in ctx.Fees
                    select c).ToList();

Przykład: List GoodFees = (z f w ctx.Fees gdzie f.FeeID! =Jeden z identyfikatorów w ExcludedFeeIDs);

Prosimy o pomoc?

questionAnswers(1)

yourAnswerToTheQuestion