Update GaussDBNative

This commit is contained in:
sunkaixuan 2025-04-01 16:41:38 +08:00
parent c094f1a7d4
commit 044618bc29

View File

@ -51,7 +51,7 @@ namespace SqlSugar
className = InstanceFactory.CustomNamespace + "." + InstanceFactory.CustomDbName + "FastBuilder";
break;
default:
className = $"SqlSugar.{this.context.CurrentConnectionConfig.DbType}FastBuilder";
className = $"SqlSugar.{this.context.CurrentConnectionConfig.DbType.ToString().Replace("Native","")}FastBuilder";
break;
}
var reslut = InstanceFactory.CreateInstance<IFastBuilder>(className);