I Have two generic list filled with CustomsObjects.
I need to retrieve the difference between those two lists(Items who are in the first without the items in the sec
var resultList = checklist.Where(p => myList.All(l => p.value != l.value)).ToList();