What is the meaning of "id=name" in the definition of the User entity? Any resources about the persist field attributes?
User name Text Asc id=name
|
What is the meaning of "id=name" in the definition of the User entity? Any resources about the persist field attributes? User name Text Asc id=name |
|||
|
|
|
The id=... attribute sets the column name for the tables primary key. For Example:
... will create a table with an integer primary key called "product_id" |
|||
|
|