修改DEMO

This commit is contained in:
sunkaixuan 2025-04-01 12:50:11 +08:00
parent f26046e10a
commit 15043be49d

View File

@ -2,14 +2,17 @@
using System.Data;
SqlSugar.InstanceFactory.CustomNamespace = "SqlSugar.GaussDB";
SqlSugar.InstanceFactory.CustomDbName = "GaussDB";
SqlSugar.InstanceFactory.CustomDllName = "SqlSugar.GaussDBCore";
//说明GaussDB原生驱动访问数据库
//这行代码扔程序启动时
InstanceFactory.CustomAssemblies = new System.Reflection.Assembly[] {
typeof(SqlSugar.GaussDBCore.GaussDBDataAdapter).Assembly };
//创建DB
var db = new SqlSugarClient(new ConnectionConfig()
{
ConnectionString = "PORT=5432;DATABASE=SqlSugar5Demo;HOST=localhost;PASSWORD=postgres;USER ID=postgres",
DbType = SqlSugar.DbType.Custom,
DbType = SqlSugar.DbType.GaussDBNative,
IsAutoCloseConnection = true,
MoreSettings = new ConnMoreSettings()
{
@ -17,8 +20,6 @@ var db = new SqlSugarClient(new ConnectionConfig()
}
}, db =>
{
db.Aop.OnLogExecuting = (x, y) =>
{
Console.WriteLine(x);