Show / Hide Table of Contents

Interface IHasDeletionTime

A standard interface to add DeletionTime property to a class. It also makes the class soft delete (see ISoftDelete).

Inherited Members
ISoftDelete.IsDeleted
Namespace: Volo.Abp.Auditing
Assembly: Volo.Abp.Auditing.dll
Syntax
public interface IHasDeletionTime : ISoftDelete

Properties

DeletionTime

Deletion time.

Declaration
DateTime? DeletionTime { get; set; }
Property Value
Type Description
System.Nullable<DateTime>

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft