Referrers

open class Referrers<ParentID : Comparable<ParentID>, in Parent : Entity<ParentID>, ChildID : Comparable<ChildID>, out Child : Entity<ChildID>, REF>(val reference: Column<REF>, val factory: EntityClass<ChildID, Child>, val cache: Boolean, references: Map<Column<*>, Column<*>>? = null) : ReadOnlyProperty<Parent, SizedIterable<Child>>

Class responsible for implementing property delegates of the read-only properties involved in a one-to-many relation, which retrieves all child entities that reference the parent entity.

Parameters

reference

The reference column defined on the child entity's associated table.

factory

The EntityClass associated with the child entity that references the parent entity.

cache

Whether loaded reference entities should be stored in the EntityCache.

Inheritors

Constructors

Link copied to clipboard
constructor(reference: Column<REF>, factory: EntityClass<ChildID, Child>, cache: Boolean, references: Map<Column<*>, Column<*>>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun getValue(thisRef: Parent, property: KProperty<*>): SizedIterable<Child>
Link copied to clipboard

Modifies this reference to sort entities based on multiple columns as specified in order.

Modifies this reference to sort entities according to the specified order.

infix fun orderBy(expression: Expression<*>): Referrers<ParentID, Parent, ChildID, Child, REF>

Modifies this reference to sort entities by a column specified in expression using ascending order.