<@U0EC2UPDF> Is there a way to link only one colum...
# exposed
d
@tapac Is there a way to link only one column's value in another table to an Entity class in DAO? Say I have :
Copy code
object Categories : IntIdTable("categories") {
   val name: String
}

....

class Item(id: EntityID<Int>): IntEntity(id) {
   ....
   var categoryName: String by ????
}