| 12345678910111213141516171819202122232425 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace MadRunFabric.Common.DbContext
- {
- public class BaseSqlContext
- {
- public static string DB_ConnectionString { get; set; }
- public BaseSqlContext()
- {
- Db = new SqlSugarClient(new ConnectionConfig()
- {
- ConnectionString = DB_ConnectionString,
- DbType = DbType.SqlServer,
- IsAutoCloseConnection = true,
- InitKeyType = InitKeyType.SystemTable,
- IsShardSameThread = false
- });
- }
- public SqlSugarClient Db;
- }
- }
|