= 50).index() val age = integer("age") } class User(id: EntityID) : Entity(id) { var name: String by Users.name var age: Int by Users.age } Delegated properties in frameworks corresponds to a table in the database corresponds to a specific entry in this table columns values
= 50).index() val age = integer("age") } class User(id: EntityID) : Entity(id) { var name: String by Users.name var age: Int by Users.age } retrieves the value and updates it automatically Delegated properties in frameworks