How to efficiently map jooq records to kotlin domains
I have been searching for a solution for a few days now but I am struggling to find an approach that is efficient and generic.
The Jooq documentation as well as solutions online have not really given me the opportunity to grasp how to map records to objects
Jooq Records mapping seems a very good solution but I don't know how to implement it when it comes to complex object.
Consider the following:
data class Person(
val id: String,
val name: String,
val state: Boolean,
val...