Synchronous code

This commit is contained in:
sunkaixuan 2025-06-23 15:00:26 +08:00
parent 7f07b2d42f
commit 00605da0e6

View File

@ -76,6 +76,11 @@ namespace SqlSugar
}
batchInsetrSql.AppendLine(";SELECT LAST_INSERT_ROWID();");
if (MySqlIgnore)
{
batchInsetrSql.Remove(0, "INSERT INTO `".Length);
batchInsetrSql.Insert(0, "REPLACE INTO `");
}
var result = batchInsetrSql.ToString();
return result;
}