Member Junction
    Preparing search index...

    Interface OrganicKeyTransitiveViewConfig

    Configuration for a transitive bridge view that CodeGen will create automatically. The view bridges two entities that share an organic key but don't have a direct relationship.

    interface OrganicKeyTransitiveViewConfig {
        Name: string;
        SchemaName?: string;
        SQL: string;
    }
    Index

    Properties

    Properties

    Name: string

    The name for the view (e.g., "vwSubscriberCampaignSendBridge")

    SchemaName?: string

    The schema to create the view in (defaults to the related entity's schema if not specified)

    SQL: string

    Raw SQL for the view body (the SELECT statement). CodeGen emits CREATE OR ALTER VIEW wrapping this.