Track model constructors registered against a particular DAL instance. The registry maintains lookups by both table name and optional registry key so modules can share handles reliably.

Constructors

Properties

ownerDAL: DataAccessLayer

Methods

  • Determine whether the registry contains a model for the provided key.

    Parameters

    • identifier: string

      Table name or registry key to check.

    Returns boolean

    True when a constructor is registered.

  • Snapshot the registry keyed by custom registry keys.

    Returns Map<string, AnyModelConstructor>

    Map of registry keys to constructors.

  • Snapshot the registry keyed by table name.

    Returns Map<string, AnyModelConstructor>

    Map of table names to constructors.