Hello. Is that possible to get a typed recordset from a select query in Jooq?
For now it seems that we need to use Result<Record> which is pretty generic. I would like it to be something like Result<UserRecord> or List<UserRecord> if possible to be able to iterate it and get UserRecord on each iteration. For now it seems, that I need to iterate Result<Record> and cast each record to UserRecord type, right?
