mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
Pgsql float[] bulkcopy
This commit is contained in:
parent
0c43af2095
commit
79e436dc81
@ -99,6 +99,10 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
result.Type = NpgsqlDbType.Array | NpgsqlDbType.Bigint;
|
result.Type = NpgsqlDbType.Array | NpgsqlDbType.Bigint;
|
||||||
}
|
}
|
||||||
|
else if (key == "_float8")
|
||||||
|
{
|
||||||
|
result.Type = NpgsqlDbType.Array | NpgsqlDbType.Double;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var type = PgSqlType[key.Substring(1)];
|
var type = PgSqlType[key.Substring(1)];
|
||||||
|
Loading…
Reference in New Issue
Block a user