Aliases to the type of the primary key of an entity.
The PrimaryKeyType template returns the type of the primary key.
static struct MyEntity { @primaryKey int a; int b; } assert(is(PrimaryKeyType!MyEntity == int));
See Implementation
Aliases to the type of the primary key of an entity.