Browse Source

auditlogging module improvements

pull/395/head
Yunus Emre Kalkan 8 years ago
parent
commit
9b879a9d5c
  1. 2
      modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo/Abp/AuditLogging/AbpAuditLoggingEfCoreQueryableExtensions.cs

2
modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo/Abp/AuditLogging/AbpAuditLoggingEfCoreQueryableExtensions.cs

@ -19,7 +19,7 @@ namespace Volo.Abp.AuditLogging
return queryable
.Include(x => x.Actions)
.Include(x => x.EntityChanges);
.Include(x => x.EntityChanges).ThenInclude(ec=>ec.PropertyChanges);
}
}

Loading…
Cancel
Save