Implemented by Entity, from which all non-Identity entities derive, and also by
any IdentityUser-derived classes.
public interface IEntity
Derived
↳ Entity
UserId of the person who created the entity.
System.Guid CreateUserId { get; set; }
UTC date/time when the entity was created.
System.DateTime CreateUtc { get; set; }
SQL Server timestamp field, used for concurrency checking.
byte[] Timestamp { get; set; }
UserId of the person who last updated the entity.
System.Guid UpdateUserId { get; set; }
UTC date/time when the entity was last updated.
System.DateTime UpdateUtc { get; set; }