OptionalReferrers

Deprecated

The OptionalReferrers class is a complete duplicate of the Referrers class; therefore, the latter should be used instead.

Replace with

Referrers

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

Parameters

reference

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

factory

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

cache

Whether loaded reference entities should be stored in the EntityCache.

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.