From f26046e10ad60979c3612fef08515131ea5e24f6 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Tue, 1 Apr 2025 12:49:49 +0800 Subject: [PATCH] Update GaussDBNative --- .../SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs | 4 ++++ Src/Asp.NetCore2/SqlSugar/Enum/DbType.cs | 1 + Src/Asp.NetCore2/SqlSugar/Infrastructure/InstanceFactory.cs | 4 ++++ 3 files changed, 9 insertions(+) diff --git a/Src/Asp.NetCore2/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs b/Src/Asp.NetCore2/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs index 081a3c35d..f0ecb2c32 100644 --- a/Src/Asp.NetCore2/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs +++ b/Src/Asp.NetCore2/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs @@ -553,6 +553,10 @@ namespace SqlSugar Check.Exception(SugarCompatible.IsFramework, "Db2 only support .net core"); InstanceFactory.CustomDllName = "SqlSugar.Db2Core"; break; + case DbType.GaussDBNative: + Check.Exception(SugarCompatible.IsFramework, "GaussDBNative only support .net core"); + InstanceFactory.CustomDllName = "SqlSugar.GaussDBCore"; + break; default: throw new Exception("ConnectionConfig.DbType is null"); } diff --git a/Src/Asp.NetCore2/SqlSugar/Enum/DbType.cs b/Src/Asp.NetCore2/SqlSugar/Enum/DbType.cs index ba2865cd3..c2451a061 100644 --- a/Src/Asp.NetCore2/SqlSugar/Enum/DbType.cs +++ b/Src/Asp.NetCore2/SqlSugar/Enum/DbType.cs @@ -37,6 +37,7 @@ namespace SqlSugar TDSQL, HANA, DB2, + GaussDBNative, Custom =900 } } diff --git a/Src/Asp.NetCore2/SqlSugar/Infrastructure/InstanceFactory.cs b/Src/Asp.NetCore2/SqlSugar/Infrastructure/InstanceFactory.cs index d05de1e9f..9a7f0b4af 100644 --- a/Src/Asp.NetCore2/SqlSugar/Infrastructure/InstanceFactory.cs +++ b/Src/Asp.NetCore2/SqlSugar/Infrastructure/InstanceFactory.cs @@ -444,6 +444,10 @@ namespace SqlSugar { return "SqlSugar.DB2."+ type+ name; } + else if (type == "GaussDBNative") + { + return "SqlSugar.GaussDB.GaussDB" + name; + } else { //if (!string.IsNullOrEmpty(CustomDllName))