Table of Contents

Interface ISoftDeletable

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

Defines an interface for entities that support soft deletion.

public interface ISoftDeletable
Extension Methods

Properties

DeletedDate

Gets or sets the date the entity was deleted.

DateTime? DeletedDate { get; set; }

Property Value

DateTime?

IsDeleted

Gets or sets a value indicating whether the entity has been deleted.

bool IsDeleted { get; set; }

Property Value

bool