Update GaussDBNative

This commit is contained in:
sunkaixuan 2025-04-02 12:14:23 +08:00
parent f9d484959e
commit 0954bed803

View File

@ -50,6 +50,9 @@ namespace SqlSugar
case DbType.Custom: case DbType.Custom:
className = InstanceFactory.CustomNamespace + "." + InstanceFactory.CustomDbName + "FastBuilder"; className = InstanceFactory.CustomNamespace + "." + InstanceFactory.CustomDbName + "FastBuilder";
break; break;
case DbType.GaussDBNative:
className = "SqlSugar.GaussDB.GaussDBFastBuilder";
break;
default: default:
className = $"SqlSugar.{this.context.CurrentConnectionConfig.DbType.ToString().Replace("Native","")}FastBuilder"; className = $"SqlSugar.{this.context.CurrentConnectionConfig.DbType.ToString().Replace("Native","")}FastBuilder";
break; break;