Update GaussDBNative

This commit is contained in:
sunkaixuan 2025-04-01 12:49:49 +08:00
parent b02e47a420
commit f26046e10a
3 changed files with 9 additions and 0 deletions

View File

@ -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");
}

View File

@ -37,6 +37,7 @@ namespace SqlSugar
TDSQL,
HANA,
DB2,
GaussDBNative,
Custom =900
}
}

View File

@ -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))