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

    类型别名 OrderByCondition

    OrderByCondition: {
        [columnName: string]:
            | "ASC"
            | "DESC"
            | { nulls?: "NULLS FIRST"
            | "NULLS LAST"; order: "ASC" | "DESC" };
    }

    Special object that defines order condition for ORDER BY in sql.

    Example: { "name": "ASC", "id": "DESC" }

    类型声明

    • [columnName: string]: "ASC" | "DESC" | { nulls?: "NULLS FIRST" | "NULLS LAST"; order: "ASC" | "DESC" }