mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 18:52:50 +08:00
- fix: ISelect.InsertInto 自动迁移;
This commit is contained in:
parent
4c7de1da8a
commit
184d11d692
@ -953,6 +953,7 @@ namespace FreeSql.Internal.CommonProvider
|
||||
if (string.IsNullOrEmpty(tableName)) tableName = tb.DbName;
|
||||
if (_orm.CodeFirst.IsSyncStructureToLower) tableName = tableName.ToLower();
|
||||
if (_orm.CodeFirst.IsSyncStructureToUpper) tableName = tableName.ToUpper();
|
||||
if (_orm.CodeFirst.IsAutoSyncStructure) _orm.CodeFirst.SyncStructure(typeof(TTargetEntity), tableName);
|
||||
|
||||
var map = new ReadAnonymousTypeInfo();
|
||||
var field = new StringBuilder();
|
||||
|
Loading…
x
Reference in New Issue
Block a user