From 2bd9344e99d4bd55c1f63f0de7afa03ad4e65381 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 3 Mar 2022 09:41:49 +0100 Subject: [PATCH] [jOOQ/jOOQ#12721] Added a new tip about Table <: SelectField --- jOOQ/src/main/java/org/jooq/impl/Tips.java | 1 + 1 file changed, 1 insertion(+) diff --git a/jOOQ/src/main/java/org/jooq/impl/Tips.java b/jOOQ/src/main/java/org/jooq/impl/Tips.java index 3f1897e104..194acb73bd 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Tips.java +++ b/jOOQ/src/main/java/org/jooq/impl/Tips.java @@ -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 references as SelectField to project nested TableRecords in any query: https://blog.jooq.org/projecting-type-safe-nested-tablerecords-with-jooq-3-17/", "" };