Update gbase

This commit is contained in:
sunkaixuan
2025-09-10 17:18:50 +08:00
parent cdd6069c0c
commit 8fd28fee0e

View File

@@ -239,7 +239,7 @@ WHEN NOT MATCHED THEN
: sql;
// replace the @param with ?
foreach (var k in dictionary)
foreach (var k in dictionary.OrderByDescending(o => o.Key.Length))
{
sql = sql.Replace("@" + k.Key, " ?");
}