在asp.net样板中,我们需要跟踪对实体的更改。我看到ABP具有实体跟踪功能(新功能),但它会将实体之间的所有更改存储在一个表中,这对我们不起作用。是否可以创建自定义IEntityHistoryStore
来存储每个实体的更改(在其自己的表中)?
例如,假设有一个实体Task
。
[Table("Task", Schema = "Tasks")]
public class Task : Entity<int>
{
[Column(TypeName = "varchar(255)")]
public string Description { get; set; }
// some more poco properties
}
然后我要定义的是另一个表zzLog.Tasks_Task,我希望该表看起来像这样:
╔════════╦════════════════════════╦══════╦══════════╦════════════════════╗
║ TaskId ║ Description ║ lgId ║ lgAction ║ lgTime ║
╠════════╬════════════════════════╬══════╬══════════╬════════════════════╣
║ 1 ║ Some description ║ 1 ║ 1 ║ 2019-05-30 9:05 AM ║
║ 1 ║ Some other description ║ 2 ║ 2 ║ 2019-05-30 9:06 AM ║
║ 1 ║ Changed again ║ 3 ║ 2 ║ 2019-05-30 9:07 AM ║
║ 1 ║ Changed again ║ 4 ║ 3 ║ 2019-05-30 9:08 AM ║
╚════════╩════════════════════════╩══════╩══════════╩════════════════════╝
lgAction
是一个枚举,1 =创建,2 =更新,3 =删除
这可能吗?本能说没有,因为IEntityHistoryStore
可能无法以这种方式工作。
答案 0 :(得分:0)
是,来自https://aspnetboilerplate.com/Pages/Documents/Entity-History#about-ientityhistorystore:
实体历史记录跟踪系统使用
MyEntityHistoryStore
保存更改信息。 ...您可以用自己的方式实现它...
实施public class MyEntityHistoryStore : IEntityHistoryStore
{
private readonly IRepository<zzLog.Tasks_Task> _taskLogRepository;
public EntityHistoryStore(IRepository<zzLog.Tasks_Task> taskLogRepository)
{
_taskLogRepository = taskLogRepository;
}
public virtual Task SaveAsync(EntityChangeSet changeSet)
{
foreach (var entityChange in changeSet.EntityChanges)
{
var taskLog = new zzLog.Tasks_Task()
{
TaskId = entityChange.EntityId,
Description = entityChange.PropertyChanges
.Where(pc => pc.PropertyName == "Description")
.FirstOrDefault()?
.NewValue,
// lgId = 0, // Auto-increment
lgAction =
entityChange.ChangeType == EntityChangeType.Created ? 1 :
entityChange.ChangeType == EntityChangeType.Updated ? 2 :
entityChange.ChangeType == EntityChangeType.Deleted ? 3 : 0,
lgTime = entityChange.ChangeTime
};
return _taskLogRepository.InsertAsync(taskLog);
}
}
}
:
IEntityHistoryStore
用模块的PreInitialize
方法替换// using Abp.Configuration.Startup;
Configuration.ReplaceService<IEntityHistoryStore, MyEntityHistoryStore>(DependencyLifeStyle.Transient);
的服务:
AndroidMenifest.xml