Member Junction
    Preparing search index...

    Interface PlatformSQL

    Represents a SQL fragment that may have platform-specific variants. Used for ExtraFilter, OrderBy, WhereClause, and other user-provided SQL.

    Backward compatible: where a string was accepted before, PlatformSQL is also accepted via union type (string | PlatformSQL).

    interface PlatformSQL {
        default: string;
        postgresql?: string;
        sqlserver?: string;
    }
    Index

    Properties

    default: string

    The default/fallback SQL. Used if no platform-specific variant exists.

    postgresql?: string

    PostgreSQL specific variant

    sqlserver?: string

    SQL Server specific variant