mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update oracle
This commit is contained in:
parent
584d67bc3d
commit
feee5a904b
@ -10,6 +10,10 @@ namespace SqlSugar
|
||||
{
|
||||
protected override string TomultipleSqlString(List<IGrouping<int, DbColumnInfo>> groupList)
|
||||
{
|
||||
if (groupList.Count == 0)
|
||||
{
|
||||
return " select 0 from dual";
|
||||
}
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.AppendLine("Begin");
|
||||
sb.AppendLine(string.Join("\r\n", groupList.Select(t =>
|
||||
|
Loading…
Reference in New Issue
Block a user