I found this lovely blog post on creating a generic IEqualityComparer that lets you specify a lambda expression for equality testing. This is really helpful in building fluent join expressions with the standard query operators, as in the following example (valid, self-contained LINQPad script; just copy-paste it!):
void Main()
{
var outers = new [] {
Tuple.Create("a", "b"),
Tuple.Create("a", "c")
};
var inners = new [] {
Tuple.Create("b", "c"),
Tuple.Create("a", "c")
};
var j2s = outers
.Join(
inners,
outer => outer,
inner => inner,
(outer, inner) => Tuple.Create(outer, inner),
new GenericEqualityComparer<Tuple<string, string>>(
(u, v) => (u.Item1 == v.Item1 && u.Item2 == v.Item2))
)
.Dump("Using Custom Equality Comparer")
;
}
public sealed class GenericEqualityComparer<T> : IEqualityComparer<T>
{
internal Func<T, T, bool> EqualsFunc {get; private set;}
internal Func<T, int> GetHashCodeFunc {get; private set;}
public GenericEqualityComparer(
Func<T, T, bool> equalsFunc,
Func<T, int> getHashCodeFunc = null)
{
if (equalsFunc == null)
throw new ArgumentNullException("equalsFunc");
if (getHashCodeFunc == null)
getHashCodeFunc = (t => 0x1BADF00D);
EqualsFunc = equalsFunc;
GetHashCodeFunc = getHashCodeFunc;
}
public bool Equals(T x, T y)
{
return EqualsFunc(x, y);
}
public int GetHashCode(T obj)
{
return GetHashCodeFunc(obj);
}
}
The question is how can I make this thing use type inference? The compiler forces met to state, explicitly, the type arguments to the constructor GenericEqualityComparer<Tuple<string, string>>, even though I intuitively thought the compiler should be able to figure it out. If I leave out the explicit type argument, I get
Using the generic type 'UserQuery.GenericEqualityComparer<T>' requires 1 type arguments
Without type inference, it seems a broader scenario, say using anonymous type as in the following, it hopeless:
var j3s = outers
.Join(
inners,
outer => new {Left = outer.Item1, Right = outer.Item2},
inner => new {X = inner.Item1, Y = inner.Item2},
(outer, inner) => Tuple.Create(outer, inner),
new GenericEqualityComparer<????????????????>(
(u, v) => (u.Left == v.X && u.Right == v.Y)
)
)
.Dump("Using type inference?")
;