-
Notifications
You must be signed in to change notification settings - Fork 296
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
Left and Right join #61
Comments
Yes, when chaining the |
OMG why not just make an innerJoin function and leftJoin function? |
Because we have real use cases for right and outer joins as well. A single function with a join type argument resulted in less code which was easier to maintain. |
But it creates more complicated code for people using the framework. |
It would be nice to have the functions |
@airtonzanon Yes it would be nice to have a "syntax sugar" for the most common join types. |
vs .
I don't really see how the code is any more complicated from API perspective, but definitely not opposed to having some extra join functions that call |
@dabaus I will look at improving the docs so ensure that the join types are clearly covered. |
#348 |
Is there a way to create left (outer or inner) join and right (outer or inner) join statements?
The text was updated successfully, but these errors were encountered: