diff --git a/更新日志.md b/更新日志.md index a431731..36c777e 100644 --- a/更新日志.md +++ b/更新日志.md @@ -4,7 +4,7 @@ ## v0.12.1(预告) - 增加 AsTable 和 Repository 分表时的自动迁移分表功能; -- 增加 ICodeFirst.SyncStructure(Type entityType, string tableName) 指定表名来迁移实体,之前是根据实体特性 Table.Name 来迁移的; +- 增加 ICodeFirst.SyncStructure(Type entityType, string tableName) 指定表名来迁移实体; ```csharp fsql.CodeFirst.SyncStructure(typeof(Log), "Log_1"); //迁移到 Log_1 表 fsql.CodeFirst.SyncStructure(typeof(Log), "Log_2"); //迁移到 Log_2 表