Linq Except with custom IEqualityComparer
问题 I am trying to find the difference between two generic lists, as in the example below. Even though t1 and t2 contain the same properties, they are not the same object, so I have need to implement an IEqualityComparer. This appears to be working with this example, but the real class has several other properties and I also need to do the same with a few other class. So I was wondering if I am re-inventing the wheel? Is there an easier method of comparing all the properties of two objects? At