Is it possible in jOOQ to use an adhoc converter for converting nested row-value expressions?
I'm already using an adhoc converter for smaller degree mappings:
row(
TABLE_A.relation1().FIRST_NAME,
TABLE_A.relation1().LAST_NAME,
).mapping { firstname, lastname -> listOfNotNull(firstname, lastname).joinToString(" ") },
However, I would like something similar for higher degree mappings:
row(
TABLE_B.FIRST_FIELD,
...
TABLE_B.TWENTYTHIRD_FIELD,
).mapping { record -> custom converter logic, e.g. MyDataClass(record[TABLE_B.TWENTYTHIRD_FIELD]) }
Is it possible to project these type of row value expressions? I'm using jOOQ 3.16.