Class JoinTable<T, K>Abstract

Abstract class representing a join table for HasAndBelongsToMany relationships. This class should be extended for specific join table implementations. It is virtual and not persisted to the database but manages the denormalized records in each related entity's partition.

Example:

class ExampleJoinTable extends JoinTable {
public exampleId1: ForeignKey;
public exampleId2: ForeignKey;
}

Type Parameters

Constructors

Methods

Constructors

Methods