PrimaryKeyType

Aliases to the type of the primary key of an entity.

Members

Aliases

PrimaryKeyType
alias PrimaryKeyType = typeof(PrimaryKeySymbol!Type)
Undocumented in source.

Examples

The PrimaryKeyType template returns the type of the primary key.

static struct MyEntity
{
    @primaryKey
    int a;

    int b;
}

assert(is(PrimaryKeyType!MyEntity == int));

Meta