Oracle SubInsert bug

This commit is contained in:
skx
2020-10-30 18:50:34 +08:00
parent 8e84d98b1a
commit 99f37e08af

View File

@@ -96,6 +96,11 @@ namespace SqlSugar
batchInsetrSql.AppendLine("SELECT 1 FROM DUAL");
}
var result= batchInsetrSql.ToString();
if (result.Contains("{SugarSeq:=}"))
{
result = result.Replace("\"{SugarSeq:=}", "");
result = result.Replace("{SugarSeq:=}\"", "");
}
return result;
}
}