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