目标是跟踪谁更改并删除了实体。
所以我有一个实现接口的实体:
interface IAuditable {
string ModifiedBy {get;set;}
}
class User: IAuditable {
public int UserId {get;set;}
public string UserName {get;set;}
public string ModifiedBy {get;set;}
[Timestamp]
public byte[] RowVersion { get; set; }
}
现在,实体删除操作的代码可能如下所示:
User user = context.Users.First();
user.ModifiedBy = CurrentUser.Name;
context.Users.Remove(employer);
context.SaveContext();
实际上:ModifiedBy
更新将永远不会执行(当我的数据库历史记录触发期望"处理"它时)。 只会在DB上执行删除语句。
我想知道如何强制EF Core"更新"如果实体被修改,则删除实体/条目(实现特定接口)。
注意:RowVersion
会增加额外的复杂性。
P.S。 手动添加额外的SaveContext调用 - 当然是一个选项,但我希望有一个通用的解决方案:许多各种更新和删除,然后一个SaveContext进行所有分析。
要在SaveContext收集var deletedEntries = entries.Where(e => e.State == EntityState.Deleted && isAuditable(e))
之前手动更新这些属性,它不是一个选项,因为它可能会破坏EF Core锁定订单管理,从而引发死锁。
最明确的解决方案是保留一个SaveContext调用,但在EF CORE
调用DELETE
之前在可审计字段上注入UPDATE语句。怎么做到这一点?可能有人有解决方案吗?
替代方案可能是"删除时不构成DELETE语句,而是调用可以接受可审计字段作为参数的存储过程"
答案 0 :(得分:4)
我想知道在EF调用其“ DELETE语句”之前如何注入“ UPDATE语句”吗?我们有这样的API吗?
有趣的问题。在撰写本文时(EF Core 2.1.3),还没有这样的 public API。以下解决方案基于内部API,幸运的是,在EF Core中,可以通过典型的内部API免责声明公开访问这些内部API:
此API支持Entity Framework Core基础结构,不能直接在您的代码中使用。该API可能会在将来的版本中更改或删除。
现在解决。负责创建修改命令的服务称为ICommandBatchPreparer
:
一种服务,用于为ModificationCommandBatch个给定列表表示的实体准备IUpdateEntry个列表。
它包含一个称为BatchCommands
的方法:
创建命令批处理,以插入/更新/删除由IUpdateEntry的给定列表表示的实体。
具有以下签名:
public IEnumerable<ModificationCommandBatch> BatchCommands(
IReadOnlyList<IUpdateEntry> entries);
和CommandBatchPreparer
类中的默认实现。
我们将用自定义实现替换该服务,这将使用“修改过的”条目扩展列表,并使用基本实现来完成实际工作。由于批处理基本上是一列修改命令的列表,它们按照依存关系排序,然后按类型排序,其中Delete
在Update
之前,因此我们将首先对更新命令使用单独的批处理然后将其余的连接起来。
生成的修改命令基于IUpdateEntry
:
传递给数据库提供者以将对实体的更改保存到数据库的信息。
幸运的是,这是一个接口,因此我们将为其他“已修改”条目及其相应的删除条目(稍后再介绍)提供自己的实现。
首先,我们将创建一个基本实现,该实现将调用简单地委派给基础对象,从而允许我们稍后仅覆盖对于我们要实现的目标必不可少的方法:
class DelegatingEntry : IUpdateEntry
{
public DelegatingEntry(IUpdateEntry source) { Source = source; }
public IUpdateEntry Source { get; }
public virtual IEntityType EntityType => Source.EntityType;
public virtual EntityState EntityState => Source.EntityState;
public virtual IUpdateEntry SharedIdentityEntry => Source.SharedIdentityEntry;
public virtual object GetCurrentValue(IPropertyBase propertyBase) => Source.GetCurrentValue(propertyBase);
public virtual TProperty GetCurrentValue<TProperty>(IPropertyBase propertyBase) => Source.GetCurrentValue<TProperty>(propertyBase);
public virtual object GetOriginalValue(IPropertyBase propertyBase) => Source.GetOriginalValue(propertyBase);
public virtual TProperty GetOriginalValue<TProperty>(IProperty property) => Source.GetOriginalValue<TProperty>(property);
public virtual bool HasTemporaryValue(IProperty property) => Source.HasTemporaryValue(property);
public virtual bool IsModified(IProperty property) => Source.IsModified(property);
public virtual bool IsStoreGenerated(IProperty property) => Source.IsStoreGenerated(property);
public virtual void SetCurrentValue(IPropertyBase propertyBase, object value) => Source.SetCurrentValue(propertyBase, value);
public virtual EntityEntry ToEntityEntry() => Source.ToEntityEntry();
}
现在是第一个自定义条目:
class AuditUpdateEntry : DelegatingEntry
{
public AuditUpdateEntry(IUpdateEntry source) : base(source) { }
public override EntityState EntityState => EntityState.Modified;
public override bool IsModified(IProperty property)
{
if (property.Name == nameof(IAuditable.ModifiedBy)) return true;
return false;
}
public override bool IsStoreGenerated(IProperty property)
=> property.ValueGenerated.ForUpdate()
&& (property.AfterSaveBehavior == PropertySaveBehavior.Ignore
|| !IsModified(property));
}
首先,我们将源状态从Deleted
“修改”为Modified
。然后,我们修改IsModified
方法,该方法返回false
项的Deleted
,以返回true
的可审核属性,从而强制将它们包含在update命令中。最后,我们修改IsStoreGenerated
方法,该方法还为false
项返回Deleted
,以返回Modified
项(EF Core code)的相应结果。为了使EF Core在更新时像RowVersion
那样正确处理数据库生成的值,需要这样做。执行命令后,EF Core将使用从数据库返回的值调用SetCurrentValue
。普通Deleted
条目不会发生这种情况,普通Modified
条目会传播到其实体。
这导致我们需要第二个自定义条目,该条目将包装原始条目,并且还将用作AuditUpdateEntry
的源,因此将从其中接收SetCurrentValue
。它将内部存储接收到的值,从而使原始实体状态保持不变,并将它们视为“当前”和“原始”。这是至关重要的,因为删除命令将在更新后执行,并且如果RowVersion
没有将新值返回为“原始”,则生成的删除命令将失败。
这是实现:
class AuditDeleteEntry : DelegatingEntry
{
public AuditDeleteEntry(IUpdateEntry source) : base(source) { }
Dictionary<IPropertyBase, object> updatedValues;
public override object GetCurrentValue(IPropertyBase propertyBase)
{
if (updatedValues != null && updatedValues.TryGetValue(propertyBase, out var value))
return value;
return base.GetCurrentValue(propertyBase);
}
public override object GetOriginalValue(IPropertyBase propertyBase)
{
if (updatedValues != null && updatedValues.TryGetValue(propertyBase, out var value))
return value;
return base.GetOriginalValue(propertyBase);
}
public override void SetCurrentValue(IPropertyBase propertyBase, object value)
{
if (updatedValues == null) updatedValues = new Dictionary<IPropertyBase, object>();
updatedValues[propertyBase] = value;
}
}
有了这两个定制条目,我们就可以实现我们的定制命令批处理生成器:
class AuditableCommandBatchPreparer : CommandBatchPreparer
{
public AuditableCommandBatchPreparer(CommandBatchPreparerDependencies dependencies) : base(dependencies) { }
public override IEnumerable<ModificationCommandBatch> BatchCommands(IReadOnlyList<IUpdateEntry> entries)
{
List<IUpdateEntry> auditEntries = null;
List<AuditUpdateEntry> auditUpdateEntries = null;
for (int i = 0; i < entries.Count; i++)
{
var entry = entries[i];
if (entry.EntityState == EntityState.Deleted && typeof(IAuditable).IsAssignableFrom(entry.EntityType.ClrType))
{
if (auditEntries == null)
{
auditEntries = entries.Take(i).ToList();
auditUpdateEntries = new List<AuditUpdateEntry>();
}
var deleteEntry = new AuditDeleteEntry(entry);
var updateEntry = new AuditUpdateEntry(deleteEntry);
auditEntries.Add(deleteEntry);
auditUpdateEntries.Add(updateEntry);
}
else
{
auditEntries?.Add(entry);
}
}
return auditEntries != null ?
base.BatchCommands(auditUpdateEntries).Concat(base.BatchCommands(auditEntries)) :
base.BatchCommands(entries);
}
}
我们差不多完成了。添加帮助程序方法来注册我们的服务:
public static class AuditableExtensions
{
public static DbContextOptionsBuilder AddAudit(this DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.ReplaceService<ICommandBatchPreparer, AuditableCommandBatchPreparer>();
return optionsBuilder;
}
}
并从您的DbContext
派生类OnConfiguring
覆盖中调用它:
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
// ...
optionsBuilder.AddAudit();
}
您完成了。
所有这些都是为了手动填充单个可审核字段而已,以使您有所了解。它可以扩展为具有更多可审核字段,注册自定义可审核字段提供程序服务并自动填充用于插入/更新/删除操作的值等。
PS 完整代码
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using Microsoft.EntityFrameworkCore.Update;
using Microsoft.EntityFrameworkCore.Update.Internal;
using Auditable.Internal;
namespace Auditable
{
public interface IAuditable
{
string ModifiedBy { get; set; }
}
public static class AuditableExtensions
{
public static DbContextOptionsBuilder AddAudit(this DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.ReplaceService<ICommandBatchPreparer, AuditableCommandBatchPreparer>();
return optionsBuilder;
}
}
}
namespace Auditable.Internal
{
class AuditableCommandBatchPreparer : CommandBatchPreparer
{
public AuditableCommandBatchPreparer(CommandBatchPreparerDependencies dependencies) : base(dependencies) { }
public override IEnumerable<ModificationCommandBatch> BatchCommands(IReadOnlyList<IUpdateEntry> entries)
{
List<IUpdateEntry> auditEntries = null;
List<AuditUpdateEntry> auditUpdateEntries = null;
for (int i = 0; i < entries.Count; i++)
{
var entry = entries[i];
if (entry.EntityState == EntityState.Deleted && typeof(IAuditable).IsAssignableFrom(entry.EntityType.ClrType))
{
if (auditEntries == null)
{
auditEntries = entries.Take(i).ToList();
auditUpdateEntries = new List<AuditUpdateEntry>();
}
var deleteEntry = new AuditDeleteEntry(entry);
var updateEntry = new AuditUpdateEntry(deleteEntry);
auditEntries.Add(deleteEntry);
auditUpdateEntries.Add(updateEntry);
}
else
{
auditEntries?.Add(entry);
}
}
return auditEntries != null ?
base.BatchCommands(auditUpdateEntries).Concat(base.BatchCommands(auditEntries)) :
base.BatchCommands(entries);
}
}
class AuditUpdateEntry : DelegatingEntry
{
public AuditUpdateEntry(IUpdateEntry source) : base(source) { }
public override EntityState EntityState => EntityState.Modified;
public override bool IsModified(IProperty property)
{
if (property.Name == nameof(IAuditable.ModifiedBy)) return true;
return false;
}
public override bool IsStoreGenerated(IProperty property)
=> property.ValueGenerated.ForUpdate()
&& (property.AfterSaveBehavior == PropertySaveBehavior.Ignore
|| !IsModified(property));
}
class AuditDeleteEntry : DelegatingEntry
{
public AuditDeleteEntry(IUpdateEntry source) : base(source) { }
Dictionary<IPropertyBase, object> updatedValues;
public override object GetCurrentValue(IPropertyBase propertyBase)
{
if (updatedValues != null && updatedValues.TryGetValue(propertyBase, out var value))
return value;
return base.GetCurrentValue(propertyBase);
}
public override object GetOriginalValue(IPropertyBase propertyBase)
{
if (updatedValues != null && updatedValues.TryGetValue(propertyBase, out var value))
return value;
return base.GetOriginalValue(propertyBase);
}
public override void SetCurrentValue(IPropertyBase propertyBase, object value)
{
if (updatedValues == null) updatedValues = new Dictionary<IPropertyBase, object>();
updatedValues[propertyBase] = value;
}
}
class DelegatingEntry : IUpdateEntry
{
public DelegatingEntry(IUpdateEntry source) { Source = source; }
public IUpdateEntry Source { get; }
public virtual IEntityType EntityType => Source.EntityType;
public virtual EntityState EntityState => Source.EntityState;
public virtual IUpdateEntry SharedIdentityEntry => Source.SharedIdentityEntry;
public virtual object GetCurrentValue(IPropertyBase propertyBase) => Source.GetCurrentValue(propertyBase);
public virtual TProperty GetCurrentValue<TProperty>(IPropertyBase propertyBase) => Source.GetCurrentValue<TProperty>(propertyBase);
public virtual object GetOriginalValue(IPropertyBase propertyBase) => Source.GetOriginalValue(propertyBase);
public virtual TProperty GetOriginalValue<TProperty>(IProperty property) => Source.GetOriginalValue<TProperty>(property);
public virtual bool HasTemporaryValue(IProperty property) => Source.HasTemporaryValue(property);
public virtual bool IsModified(IProperty property) => Source.IsModified(property);
public virtual bool IsStoreGenerated(IProperty property) => Source.IsStoreGenerated(property);
public virtual void SetCurrentValue(IPropertyBase propertyBase, object value) => Source.SetCurrentValue(propertyBase, value);
public virtual EntityEntry ToEntityEntry() => Source.ToEntityEntry();
}
}