-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix #318 #488
fix #318 #488
Conversation
don't know why this test fails, locally it passes |
... also the failing test isn't even related to my changes |
@RolandPheasant Opinions on this? |
Sorry ain't got around to looking yet. Will do so over the weekend. |
@@ -14,119 +14,119 @@ internal class InnerJoin<TLeft, TLeftKey, TRight, TRightKey, TDestination> | |||
{ | |||
private readonly IObservable<IChangeSet<TLeft, TLeftKey>> _left; | |||
|
|||
private readonly Func<TLeftKey, TLeft, TRight, TDestination> _resultSelector; | |||
private readonly Func<(TLeftKey leftKey, TRightKey rightKey), TLeft, TRight, TDestination> _resultSelector; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes perfect sense to me
I am happy to merge this but before we release, we need a wiki page to explain the breaking change and why. Are you happy to do that? |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
InnerJoin implementation similar to #483
This might be an even more breaking change since the key is now a tuple...