Table of Contents

Interface IDatedEntity

Namespace
MADE.Data.EFCore
Assembly
MADE.Data.EFCore.dll

Defines a base definition for an entity with defined created and updated date.

public interface IDatedEntity
Extension Methods

Properties

CreatedDate

Gets or sets the date of the entity's creation.

DateTime CreatedDate { get; set; }

Property Value

DateTime

UpdatedDate

Gets or sets the date of the entity's last update.

DateTime? UpdatedDate { get; set; }

Property Value

DateTime?