Hello guys, could you help to give me some suggestion on using JPA with Kotlin? I was trying Hibernate when I realized it uses lazy-loading which requires the entity to be open. I am getting “Getters of lazy classes cannot be final” from the log. Should I switch from “data class” to “open class” and then implement the standard JAVA way, or it is better to use a different ORM like Exposed?