RationalityFrontline

Results 12 comments of RationalityFrontline
trafficstars

@Tapac In your way, `cityId`'s type is EntityID\, so I should write: ```kotlin User.new { name = "a" cityId = EntityID(42, Cities) age = 5 } ``` Is there any...

One more question, how to read a many-to-many reference without loading dao entities (only read referenced id)? For example, given: ```kotlin object StarWarsFilmActors : Table() { val starWarsFilm = reference("starWarsFilm",...