using HighWayIot.Common; using HighWayIot.Log4net; using SqlSugar; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository { internal class SqlSugarHelper //不能是泛型类 { private static LogHelper logHelper = LogHelper.Instance; private static JsonChange jsonChange = JsonChange.Instance; private static string sqliteConnStr = $"Data Source={Path.GetFullPath("data\\data.db")};Version=3"; //如果是固定多库可以传 new SqlSugarScope(List,db=>{}) 文档:多租户 //如果是不固定多库 可以看文档Saas分库 //用单例模式 public static SqlSugarScope Db = new SqlSugarScope(new List() { new ConnectionConfig() { ConfigId = "sqlite", ConnectionString = sqliteConnStr, DbType = DbType.Sqlite, InitKeyType = InitKeyType.Attribute, IsAutoCloseConnection = true } }, db => { //(A)全局生效配置点 //调试SQL事件,可以删掉 db.Aop.OnLogExecuting = (sql, pars) => { logHelper.SqlLog($"{sql};参数:{jsonChange.ModeToJson(pars)}"); }; }); } }