I\'ve got a list of People that are returned from an external app and I\'m creating an exclusion list in my local app to give me the option of manually removing people from the
Many thanks for this guys.
I mangaged to get this down to one line:
var results = from p in People where !(from e in exclusions select e.CompositeKey).Contains(p.CompositeKey) select p;
Thanks again everyone.