I've a List<User> which have several keys. I have several scenarios. In some cases I want to remove duplicates based on Key1 and in other based on Key2. Both properties on the User object.
I thought this would be as simple as to give the Distinct function a generic IEqualityComparer like this:
public class AwesomeEqualityComparerOfDoom<T> : IEqualityComparer<T> where T : class
{
private readonly Func<T, object> compiledFunction;
public AwesomeEqualityComparerOfDoom(Func<T, object > propertyFunction)
{
compiledFunction = propertyFunction;
}
public bool Equals(T x, T y)
{
object key1 = compiledFunction(x);
object key2 = compiledFunction(y);
return key1.Equals(key2);
}
public int GetHashCode(T obj)
{
return obj.GetHashCode();
}
}
When I test this class manually by creating an instance of it, and giving it two users with the same key, then it works. However, when I pass it off to the Distinct function no users are removed as being duplicates.
I also tried making the IEquality class be defined as AwesomeEqualityComparerOfDoom<T,TT>, so it knew what kind of value it would be calling Equals on but to no avail.
key1isnull? CallEquals(key1, key2)– SLaks Jun 27 '11 at 13:59.Distinct. – agent-j Jun 27 '11 at 13:59