Identifier Index
The unique identifier / "primary key" of the entity.
By default, the @Id
field of an entity is indexed. This can be disabled via @NonIndex
if access should mostly be performed on other fields/queries than the unique identifier.
This should also be done if the @Id
field isn't unique!
Example of removing the index of the @Id
field:
Last updated