Updater 人大金仓 Json 2 sql

This commit is contained in:
sunkaixuan 2025-02-18 11:41:31 +08:00
parent 4a2681856d
commit 95f123e6ce

View File

@ -37,7 +37,14 @@ namespace SqlSugar
public override KeyValuePair<string, List<SugarParameter>> ToSql()
{
var result= base.ToSql();
return new KeyValuePair<string, List<SugarParameter>>(result.Key.Replace("$PrimaryKey", GetPrimaryKeys().FirstOrDefault()), result.Value);
if (GetPrimaryKeys()?.Any() == true)
{
return new KeyValuePair<string, List<SugarParameter>>(result.Key.Replace("$PrimaryKey", GetPrimaryKeys().FirstOrDefault()), result.Value);
}
else
{
return new KeyValuePair<string, List<SugarParameter>>(result.Key.Replace(" returning $PrimaryKey", ""), result.Value);
}
}
public override long ExecuteReturnBigIdentity()