- 增加 IUnitOfWork.States 自定义状态管理,便于扩展;

This commit is contained in:
2881099
2021-08-31 10:59:39 +08:00
parent 50a8cc2376
commit 26f2578cf6
5 changed files with 321 additions and 132 deletions

View File

@ -32,5 +32,10 @@ namespace FreeSql
/// 工作单元内的实体变化跟踪
/// </summary>
DbContext.EntityChangeReport EntityChangeReport { get; }
/// <summary>
/// 用户自定义的状态数据,便于扩展
/// </summary>
Dictionary<string, object> States { get; }
}
}