支持Oracle库、Oracle库代码生成完善

This commit is contained in:
不做码农
2023-06-10 18:26:18 +08:00
parent 9be0036b4e
commit 9f587711f0
23 changed files with 239 additions and 99 deletions

View File

@@ -660,8 +660,10 @@ namespace ZR.Service
//Insert(menuList);
var x = Storageable(menuList)
.WhereColumns(it => new { it.MenuName, it.ParentId })
.ToStorage();
.SplitInsert(it => !it.Any())
.SplitUpdate(it => !it.Any())
.WhereColumns(it => new { it.MenuName, it.ParentId })
.ToStorage();
x.AsInsertable.ExecuteCommand();//插入可插入部分;
x.AsUpdateable.ExecuteCommand();
}