Member Junction
    Preparing search index...

    Configuration for setting arbitrary Entity-table attributes on a specific entity, identified by BaseTable + SchemaName. This is processed after entity discovery so any column on the Entity table can be set declaratively from the config file.

    Example usage in database-metadata-config.json:

    {
    "Entities": [
    { "BaseTable": "Person", "SchemaName": "MySchema", "AllowMultipleSubtypes": true },
    { "BaseTable": "AuditLog", "SchemaName": "MySchema", "TrackRecordChanges": false }
    ]
    }
    interface EntityConfig {
        BaseTable: string;
        SchemaName: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Any additional Entity-table columns to set, keyed by column name

    Index

    Properties

    BaseTable: string

    The base table name of the entity

    SchemaName: string

    The schema containing the base table