_Id Column

Each database table contains a column called _Id that contains the unique identifier for each instance of a persistent class. The database software generates the content of the _Id column.

For SQL Server, setting the “IDENTITY” property of the _Id column to TRUE, means that a unique value is generated in the column each time a row is inserted in the table.