Class RelationshipMetadataAbstract

Serves as the base class for defining metadata related to various types of relationships within the ORM system, such as "HasMany", "BelongsTo", "HasOne", and "HasAndBelongsToMany". This abstract class provides a common structure for relationship metadata, encapsulating the relationship type, target entity, and property name.

Each subclass of RelationshipMetadata specifies a concrete type of relationship, leveraging this base class to ensure consistency and reusability across different relationship types. The metadata captured here is essential for the ORM to accurately manage and navigate relationships between entities, enabling operations like query construction, relationship traversal, and data integrity enforcement.

Hierarchy (view full)

Constructors

Properties

Constructors

Properties

propertyName: keyof default

The property name on the source entity that holds or references the related entity or entities. This name is used within the source entity's class definition to access the related entity.

Note: This class is abstract and cannot be instantiated directly. Instead, it should be extended by specific relationship metadata classes that define concrete types of relationships.

The entity class that is the target of the relationship. This specifies the class of the entity on the "other side" of the relationship.

An abstract property that must be defined by subclasses, indicating the specific type of relationship ("HasMany", "BelongsTo", "HasOne", "HasAndBelongsToMany").

Generated using TypeDoc