Class DataEntity
- Namespace
- ProjectTemplate.Infrastructure.Data.Entities
- Assembly
- ProjectTemplate.Infrastructure.dll
Provides a common Guid primary key for ProjectTemplate data entities.
public abstract class DataEntity
- Inheritance
-
DataEntity
- Derived
- Inherited Members
Properties
ConcurrencyStamp
Gets or sets the application-managed optimistic concurrency token used to detect conflicting updates.
public string ConcurrencyStamp { get; set; }
Property Value
Remarks
This token is application-managed so the default template model remains portable across SQLite and SQL Server. SQL Server-only applications can replace this pattern with a provider-native rowversion column when appropriate.
Id
Gets or sets the primary key.
public Guid Id { get; set; }