backReferencedOn
infix fun <TargetID : Any, Target : Entity<TargetID>, REF : Any> EntityClass<TargetID, Target>.backReferencedOn(column: Column<REF>): ReadOnlyProperty<Entity<ID>, Target>
infix fun <TargetID : Any, Target : Entity<TargetID>, REF : Any> EntityClass<TargetID, Target>.backReferencedOn(column: Column<REF?>): ReadOnlyProperty<Entity<ID>, Target>
Registers a reference as an immutable field of the parent entity class, which returns a child object of this EntityClass
.
The reference should have been defined by the creation of a column using reference()
on the child table.
Samples
org.jetbrains.exposed.sql.tests.shared.entities.EntityTestsData.YEntityorg.jetbrains.exposed.sql.tests.shared.entities.EntityTestsData.XTableorg.jetbrains.exposed.sql.tests.shared.entities.EntityTestsData.BEntityinfix fun <TargetID : Any, Target : Entity<TargetID>> EntityClass<TargetID, Target>.backReferencedOn(table: IdTable<*>): ReadOnlyProperty<Entity<ID>, Target>
Registers a reference as an immutable field of the parent entity class, which returns a child object of this EntityClass
.
The reference should have been defined by the creation of a foreign key constraint on the child table, by using foreignKey()
.