Skip to content
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

Make join criteria optional #19

Open
raderio opened this issue Jan 2, 2019 · 0 comments
Open

Make join criteria optional #19

raderio opened this issue Jan 2, 2019 · 0 comments

Comments

@raderio
Copy link

raderio commented Jan 2, 2019

At the moment

from(Citizens)
    .innerJoin(Cities) { Cities.id eq Citizens.cityId }
    .select(Citizens.name, Cities.name)

the criteria can be deduced automatically

from(Citizens)
    .innerJoin(Cities)
    .select(Citizens.name, Cities.name)

Or maybe even implicit join like in JOOQ https://blog.jooq.org/2018/02/20/type-safe-implicit-join-through-path-navigation-in-jooq-3-11/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant