I want to find all items in one collection that do not match another collection. The collections are not of the same type, though; I want to write a lambda expression to spe
Have a look at the Except() LINQ function. It does exactly what you need.