We know that the primary keys are usually positive integers.
Is it good idea to use uint instead of int as the primary key in data model cl
uint
int
The corresponding SQL data type is a signed number, so I'd stick with the int to avoid any surprises.