mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Synchronization code
This commit is contained in:
parent
822203dd49
commit
a93581c05a
@ -146,6 +146,11 @@ namespace SqlSugar
|
||||
this.OutputParameters.RemoveAll(it => it.ParameterName == sqlParameter.ParameterName);
|
||||
this.OutputParameters.Add(sqlParameter);
|
||||
}
|
||||
//人大金仓MYSQL模式下json字段类型处理
|
||||
if (sqlParameter.KdbndpDbType == KdbndpDbType.Json&&this.Context?.CurrentConnectionConfig?.MoreSettings?.DatabaseModel == DbType.MySql)
|
||||
{
|
||||
sqlParameter.KdbndpDbType = KdbndpDbType.Varchar;
|
||||
}
|
||||
++index;
|
||||
}
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user