I have
IEnumerable<A>
and IEnumerable<B>
I want to Group Join based on whether A.Test(B)
returns true
.
The keyselector funcs do not seem to do this as the KeySelectors need to return keys of the same type so that they can be checked for equality.
Is there something I'm missing here?