mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
Update clickhouse
This commit is contained in:
@@ -160,11 +160,11 @@ namespace SqlSugar.ClickHouse
|
|||||||
}
|
}
|
||||||
else if (dbColumnInfo.IsArray && value != null)
|
else if (dbColumnInfo.IsArray && value != null)
|
||||||
{
|
{
|
||||||
return n + "'" + this.Context.Utilities.SerializeObject(value) + "'";
|
return "'" + this.Context.Utilities.SerializeObject(value) + "'";
|
||||||
}
|
}
|
||||||
else if (dbColumnInfo.IsJson && value != null)
|
else if (dbColumnInfo.IsJson && value != null)
|
||||||
{
|
{
|
||||||
return n + "'" + this.Context.Utilities.SerializeObject(value) + "'";
|
return "'" + this.Context.Utilities.SerializeObject(value) + "'";
|
||||||
}
|
}
|
||||||
else if (type == UtilConstants.ByteArrayType)
|
else if (type == UtilConstants.ByteArrayType)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user