I have two lists and I'm trying to return items that are not in the other list. Here is my code:
var Results = ListOne.Where(x => ListTwo.All(a => a.EmployeeNum != x.EmployeeNum && a.Sched != x.Sched));
This takes about 9-10 seconds to complete. ListOne has about 1200 records and ListTwo has about 33000 records.