We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment
the criteria can be deduced automatically
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/
The text was updated successfully, but these errors were encountered: