From 50af50045796ea92e71dc0aceff35303e359e9e0 Mon Sep 17 00:00:00 2001 From: sunkaixuna <610262374@qq.com> Date: Wed, 24 Nov 2021 14:53:44 +0800 Subject: [PATCH] PgSql Support inet --- .../SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Src/Asp.Net/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs b/Src/Asp.Net/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs index 01a051deb..90b6759f2 100644 --- a/Src/Asp.Net/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs +++ b/Src/Asp.Net/SqlSugar/Realization/PostgreSQL/DbBind/PostgreSQLDbBind.cs @@ -116,7 +116,8 @@ namespace SqlSugar new KeyValuePair("bit varying",CSharpDataType.byteArray), new KeyValuePair("varbit",CSharpDataType.@byte), new KeyValuePair("time",CSharpDataType.TimeSpan), - new KeyValuePair("public.geometry",CSharpDataType.@object) + new KeyValuePair("public.geometry",CSharpDataType.@object), + new KeyValuePair("inet",CSharpDataType.@object) }; public override List StringThrow {