Browse Source

Make the PropertyChanges property of EntityChange virtual.

Resolve #3066
pull/3069/head
maliming 6 years ago
parent
commit
43f797a44b
  1. 2
      modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo/Abp/AuditLogging/EntityChange.cs

2
modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo/Abp/AuditLogging/EntityChange.cs

@ -26,7 +26,7 @@ namespace Volo.Abp.AuditLogging
public virtual string EntityTypeFullName { get; protected set; }
public ICollection<EntityPropertyChange> PropertyChanges { get; protected set; }
public virtual ICollection<EntityPropertyChange> PropertyChanges { get; protected set; }
public virtual Dictionary<string, object> ExtraProperties { get; protected set; }

Loading…
Cancel
Save