[jOOQ/jOOQ#12721] Added a new tip about Table<R> <: SelectField<R>

This commit is contained in:
Lukas Eder 2022-03-03 09:41:49 +01:00
parent 8af49a0e60
commit 2bd9344e99

View File

@ -91,6 +91,7 @@ final class Tips {
"The code generator produces Javadoc from table or column comments, but you can override those directly in the code generator: https://www.jooq.org/doc/latest/manual/code-generation/codegen-advanced/codegen-config-database/codegen-database-comments/",
"Want to exclude some columns from your write operations? No problem, specify them as 'readonly' in the code generator: https://www.jooq.org/doc/latest/manual/sql-building/column-expressions/readonly-columns/",
"Need to frequently calculate the same expressions based on other columns from the same table? Many dialects support computed columns: https://www.jooq.org/doc/latest/manual/sql-building/column-expressions/computed-columns/",
"You can use Table<R> references as SelectField<R> to project nested TableRecords in any query: https://blog.jooq.org/projecting-type-safe-nested-tablerecords-with-jooq-3-17/",
""
};