I have a List of type Fee from which I need to exclude the ones that have an ID that exists in another List of type int.
List ExcludedFeeIDs = new
Try this:
var MyFees = from c in ctx.Fees where !ExcludedFeeIDs.Contains(c.FeeID) select c;