SqlSugar/Src/Asp.NetCore2/GaussTest/Program.cs
2025-04-01 12:50:11 +08:00

40 lines
930 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SqlSugar;
using System.Data;
//说明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.GaussDBNative,
IsAutoCloseConnection = true,
MoreSettings = new ConnMoreSettings()
{
DatabaseModel = SqlSugar.DbType.OpenGauss
}
}, db =>
{
db.Aop.OnLogExecuting = (x, y) =>
{
Console.WriteLine(x);
};
});
db.Open();
db.Close();
var dt = db.Ado.GetDataTable("SELECT * from tb_user limit 10");
dt.AsEnumerable().ToList().ForEach(r =>
{
Console.WriteLine(r[0].ToString());
});
Console.WriteLine("Hello, World!");