I don't understand this. Can someone please explai...
# exposed
m
I don't understand this. Can someone please explain How is the relation between
StarWarsFilms
table and a rown instance
StarWarsFilm
is established?
Copy code
class StarWarsFilm(id: EntityID<Int>) : IntEntity(id) {
 companion object : IntEntityClass<StarWarsFilm>(StarWarsFilms)
 var sequelId by StarWarsFilms.sequelId 
 var name     by StarWarsFilms.name
 var director by StarWarsFilms.director
}
a
So does you solution work as expected or not?
m
Hi, I switched to Jdbi for now due to time crunch. Exposed needs some more experimentation for me