Show / Hide Table of Contents

Class EntityChangeInfo

Inheritance
System.Object
EntityChangeInfo
Namespace: Volo.Abp.Auditing
Assembly: Volo.Abp.Auditing.dll
Syntax
public class EntityChangeInfo : IHasExtraProperties

Constructors

EntityChangeInfo()

Declaration
public EntityChangeInfo()

Properties

ChangeTime

Declaration
public DateTime ChangeTime { get; set; }
Property Value
Type Description
DateTime

ChangeType

Declaration
public EntityChangeType ChangeType { get; set; }
Property Value
Type Description
EntityChangeType

EntityEntry

Declaration
public virtual object EntityEntry { get; set; }
Property Value
Type Description
System.Object

EntityId

Declaration
public string EntityId { get; set; }
Property Value
Type Description
System.String

EntityTenantId

TenantId of the related entity. This is not the TenantId of the audit log entry. There can be multiple tenant data changes in a single audit log entry.

Declaration
public Guid? EntityTenantId { get; set; }
Property Value
Type Description
System.Nullable<Guid>

EntityTypeFullName

Declaration
public string EntityTypeFullName { get; set; }
Property Value
Type Description
System.String

ExtraProperties

Declaration
public Dictionary<string, object> ExtraProperties { get; }
Property Value
Type Description
Dictionary<System.String, System.Object>

PropertyChanges

Declaration
public List<EntityPropertyChangeInfo> PropertyChanges { get; set; }
Property Value
Type Description
List<EntityPropertyChangeInfo>

Methods

Merge(EntityChangeInfo)

Declaration
public virtual void Merge(EntityChangeInfo changeInfo)
Parameters
Type Name Description
EntityChangeInfo changeInfo

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