Member Junction
    Preparing search index...

    Maps a generic source type to platform-specific SQL types.

    interface TypeMappingEntry {
        MJFieldType: string;
        PostgresType: string;
        SourceType: SchemaFieldType;
        SqlServerType: string;
    }
    Index

    Properties

    MJFieldType: string

    MJ EntityField.Type value (informational — CodeGen discovers actual type).

    PostgresType: string

    PostgreSQL type template (e.g., "VARCHAR(n)").

    SourceType: SchemaFieldType

    Generic source type — a dialect-abstraction SchemaFieldType (e.g., "string", "integer").

    SqlServerType: string

    SQL Server type template (e.g., "NVARCHAR(n)").