API 参考
    正在准备搜索索引...

    View options.

    interface ViewOptions {
        database?: string;
        expression: string | ((connection: DataSource) => SelectQueryBuilder<any>);
        materialized?: boolean;
        name: string;
        schema?: string;
    }
    索引

    属性

    database?: string

    Database name that this table resides in if it applies.

    expression: string | ((connection: DataSource) => SelectQueryBuilder<any>)

    View expression.

    materialized?: boolean

    Indicates if view is materialized

    name: string

    View name.

    schema?: string

    Schema name that this table resides in if it applies.