diff --git a/Src/Asp.NetCore2/SqlSugar.HG/HG/DbBind/PostgreSQLDbBind.cs b/Src/Asp.NetCore2/SqlSugar.HG/HG/DbBind/PostgreSQLDbBind.cs index 53282db56..0942a230a 100644 --- a/Src/Asp.NetCore2/SqlSugar.HG/HG/DbBind/PostgreSQLDbBind.cs +++ b/Src/Asp.NetCore2/SqlSugar.HG/HG/DbBind/PostgreSQLDbBind.cs @@ -140,6 +140,7 @@ namespace SqlSugar.HG new KeyValuePair("varbit",CSharpDataType.@byte), new KeyValuePair("time",CSharpDataType.TimeSpan), new KeyValuePair("public.geometry",CSharpDataType.@object), + new KeyValuePair("public.geography",CSharpDataType.@object), new KeyValuePair("inet",CSharpDataType.@object) }; public override List StringThrow diff --git a/Src/Asp.NetCore2/SqlSugar.TDSQLForPGODBC/TDSQLForPG/DbBind/TDSQLForPGODBCDbBind.cs b/Src/Asp.NetCore2/SqlSugar.TDSQLForPGODBC/TDSQLForPG/DbBind/TDSQLForPGODBCDbBind.cs index 37272a18f..6c655487d 100644 --- a/Src/Asp.NetCore2/SqlSugar.TDSQLForPGODBC/TDSQLForPG/DbBind/TDSQLForPGODBCDbBind.cs +++ b/Src/Asp.NetCore2/SqlSugar.TDSQLForPGODBC/TDSQLForPG/DbBind/TDSQLForPGODBCDbBind.cs @@ -145,6 +145,7 @@ namespace SqlSugar.TDSQLForPGODBC new KeyValuePair("varbit",CSharpDataType.@byte), new KeyValuePair("time",CSharpDataType.TimeSpan), new KeyValuePair("public.geometry",CSharpDataType.@object), + new KeyValuePair("public.geography",CSharpDataType.@object), new KeyValuePair("inet",CSharpDataType.@object) }; public override List StringThrow diff --git a/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs b/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs index 7fa69da8e..c3b427513 100644 --- a/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs +++ b/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs @@ -148,6 +148,8 @@ namespace SqlSugar new KeyValuePair("geometry",CSharpDataType.@object), new KeyValuePair("public.geometry",CSharpDataType.@object), + new KeyValuePair("geography",CSharpDataType.@object), + new KeyValuePair("public.geography",CSharpDataType.@object), }; public override List StringThrow { diff --git a/Src/Asp.NetCore2/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs b/Src/Asp.NetCore2/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs index 25dc14127..afed95a6c 100644 --- a/Src/Asp.NetCore2/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs +++ b/Src/Asp.NetCore2/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs @@ -165,6 +165,7 @@ namespace SqlSugar new KeyValuePair("varbit",CSharpDataType.@byte), new KeyValuePair("time",CSharpDataType.TimeSpan), new KeyValuePair("public.geometry",CSharpDataType.@object), + new KeyValuePair("public.geography",CSharpDataType.@object), new KeyValuePair("inet",CSharpDataType.@object), new KeyValuePair("number",CSharpDataType.@int),