1234567891011121314151617181920212223242526 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- namespace TFT_DbHelper
- {
- public static class DbHelper
- {
- public static SqlSugarScope Db = new(new ConnectionConfig()
- {
- ConnectionString = ConfigurationManager.AppSettings["MySql"],
- DbType = DbType.MySql,
- IsAutoCloseConnection = true,
- ConfigId = "TFT-AgvControlSystem"
- },
- db =>
- {
- //db.Aop.OnLogExecuting = (sql, pars) =>
- //{
- // Console.WriteLine(sql);//输出sql,查看执行sql 性能无影响
- //};
- });
- }
- }
|