databasegenerated
Database-generated refers to values produced by the database engine rather than by application code. Common examples include identity or auto-incremented primary keys, computed columns whose values are derived from other columns, and values produced by default constraints or triggers. The database is responsible for computing and returning these values when a row is inserted or updated.
In object-relational mappers such as Entity Framework, a property can be marked as database-generated to indicate
Typical use cases include a primary key column defined as an IDENTITY, a computed column such as