using SqlSugar; 
 | 
using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Text; 
 | 
using System.Threading.Tasks; 
 | 
using WIDESEA_Core.DB; 
 | 
using WIDESEA_Core.Seed; 
 | 
  
 | 
namespace WIDESEA_Core.Helper 
 | 
{ 
 | 
    public class SqlSugarHelper 
 | 
    { 
 | 
        //多库情况下使用说明: 
 | 
        //如果是固定多库可以传 new SqlSugarScope(List<ConnectionConfig>,db=>{}) 文档:多租户 
 | 
        //如果是不固定多库 可以看文档Saas分库 
 | 
        //用单例模式 
 | 
        public static SqlSugarScope DbWCS = new SqlSugarScope(new ConnectionConfig() 
 | 
        { 
 | 
            //ConnectionString = DBContext.GetMainConnectionDb().Connection, 
 | 
            ConnectionString = AppSettings.app(MainDb.ConnectionStringWCS), 
 | 
            DbType = DbType.SqlServer,//数据库类型 
 | 
            IsAutoCloseConnection = true //不设成true要手动close 
 | 
        }, 
 | 
      db => 
 | 
          {  
 | 
          }); 
 | 
  
 | 
        public static SqlSugarScope DbWMS = new SqlSugarScope(new ConnectionConfig() 
 | 
        { 
 | 
            ConnectionString = DBContext.GetMainConnectionDb().Connection, 
 | 
            //ConnectionString = AppSettings.app(MainDb.ConnectionStringWCS), 
 | 
            DbType = DbType.SqlServer,//数据库类型 
 | 
            IsAutoCloseConnection = true //不设成true要手动close 
 | 
        }, 
 | 
      db => 
 | 
      { 
 | 
      }); 
 | 
    } 
 | 
} 
 |