From 43f797a44b78eda452cd9b511079af2f99b98cbf Mon Sep 17 00:00:00 2001 From: maliming Date: Wed, 11 Mar 2020 08:56:51 +0800 Subject: [PATCH] Make the PropertyChanges property of EntityChange virtual. Resolve #3066 --- .../Volo/Abp/AuditLogging/EntityChange.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo/Abp/AuditLogging/EntityChange.cs b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo/Abp/AuditLogging/EntityChange.cs index 54ee88e11c9..b90843dfc03 100644 --- a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo/Abp/AuditLogging/EntityChange.cs +++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo/Abp/AuditLogging/EntityChange.cs @@ -26,7 +26,7 @@ public class EntityChange : Entity, IMultiTenant, IHasExtraProperties public virtual string EntityTypeFullName { get; protected set; } - public ICollection PropertyChanges { get; protected set; } + public virtual ICollection PropertyChanges { get; protected set; } public virtual Dictionary ExtraProperties { get; protected set; }