Comparing 2 lists doesn't work as expected. I have one list 15800 count and the second with 15700 count. I have 3 similar items in both the Lists - MID, LID, CatalogID. There are some duplicates and some are not in the smaller list. All I need to do is find those that do not exist in the smaller List.
I am trying to find those records from the bigger list by using
List<Chemical> resultlist = essList.Except(demographicList).ToList();
When I use this, I see all the records from the bigger list in the resultlist.
Also, I need to compare all the fields from each of the list before giving me the result though.
Can someone tell me an easy way to get this done and help me learn what's wrong with except part.