mirror of
				https://gitee.com/dotnetchina/SqlSugar.git
				synced 2025-10-31 08:26:51 +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";
 | |
|         }
 | |
|     }
 | |
| }
 | 
