George Metaxas
07/11/2024, 1:44 PMGeorge Metaxas
07/11/2024, 1:44 PMclass UserRating(id: EntityID<Int>) : IntEntity(id) {
companion object : IntEntityClass<UserRating>(UserRatings)
var value by UserRatings.value
var film by StarWarsFilm.referencedOn(UserRatings.film, where = {StarWarsFilm.id eq 2 })
var user by User referencedOn UserRatings.user
}
Oleg Babichev
07/26/2024, 10:57 AMvar column by Entity referrersOn Table.column orderBy Table.anotherColumn
)
So probably we should think about filtering of them also.Oleg Babichev
07/26/2024, 11:01 AMGeorge Metaxas
07/26/2024, 1:49 PMlina
05/01/2025, 1:18 PMreferrersOn
and optionalReferrersOn
references in DAO: https://github.com/JetBrains/Exposed/pull/2472lina
05/11/2025, 2:12 PM