mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
23 lines
624 B
C#
23 lines
624 B
C#
using System;
|
|
using SqlSugar;
|
|
namespace NugetTest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var db = new SqlSugarClient(new ConnectionConfig() {
|
|
ConnectionString=Config.ConnectionString,
|
|
IsAutoCloseConnection=true,
|
|
DbType=DbType.SqlServer
|
|
});
|
|
var list = db.Ado.GetInt("select 1");
|
|
Console.WriteLine("Hello World!");
|
|
}
|
|
public class Config
|
|
{
|
|
public static string ConnectionString = "server=.;uid=sa;pwd=haosql;database=SQLSUGAR4XTEST";
|
|
}
|
|
}
|
|
}
|