mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
pgsql insert array null bug
This commit is contained in:
@@ -123,6 +123,11 @@ namespace SqlSugar
|
||||
if (item.IsArray)
|
||||
{
|
||||
paramters.IsArray = true;
|
||||
if (item.Value == null || item.Value == DBNull.Value)
|
||||
{
|
||||
ArrayNull(item,paramters);
|
||||
}
|
||||
|
||||
}
|
||||
if (item.Value == null && isDic)
|
||||
{
|
||||
@@ -137,6 +142,26 @@ namespace SqlSugar
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static void ArrayNull(DbColumnInfo item, SugarParameter parameter)
|
||||
{
|
||||
if (item.PropertyType.IsIn(typeof(Guid[]), typeof(Guid?[])))
|
||||
{
|
||||
parameter.DbType = System.Data.DbType.Guid;
|
||||
}
|
||||
else if (item.PropertyType.IsIn(typeof(int[]), typeof(int?[])))
|
||||
{
|
||||
parameter.DbType = System.Data.DbType.Int32;
|
||||
}
|
||||
else if (item.PropertyType.IsIn(typeof(long[]), typeof(long?[])))
|
||||
{
|
||||
parameter.DbType = System.Data.DbType.Int64;
|
||||
}
|
||||
else if (item.PropertyType.IsIn(typeof(short[]), typeof(short?[])))
|
||||
{
|
||||
parameter.DbType = System.Data.DbType.Int16;
|
||||
}
|
||||
}
|
||||
internal void Init()
|
||||
{
|
||||
InsertBuilder.EntityInfo = this.EntityInfo;
|
||||
|
Reference in New Issue
Block a user