Cloesce - v0.0.5-unstable.27
    Preparing search index...

    Variable PrimaryKeyConst

    PrimaryKey: PropertyDecorator = ...

    Marks a property as the SQL primary key for a model.

    Every @D1 class must define exactly one primary key.

    A primary key property cannot be nullable.

    Example:

    D1
    export class User {
    PrimaryKey
    id: number;

    name: string;
    }