Member Junction
    Preparing search index...

    Configuration for an IS-A (Table-Per-Type) relationship in the additionalSchemaInfo config file. Declares that a child entity inherits from a parent entity. CodeGen sets Entity.ParentID automatically, then manages virtual field records and view JOINs for the inheritance chain.

    interface ISARelationshipConfig {
        ChildEntity: string;
        ParentEntity: string;
        SchemaName?: string;
    }
    Index

    Properties

    ChildEntity: string

    The entity name of the child (e.g., "AE Meetings"). Can also be the table name if entity names haven't been created yet.

    ParentEntity: string

    The entity name of the parent (e.g., "AE Products"). Can also be the table name.

    SchemaName?: string

    Optional schema name for table-name lookups (defaults to MJ core schema if not provided)