c# find items in one list but not another code example
Example: find element in list not in another list c#
var result = peopleList2.Where(p => !peopleList1.Any(p2 => p2.ID == p.ID));
var result = peopleList2.Where(p => !peopleList1.Any(p2 => p2.ID == p.ID));