You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.9 KiB
C#
67 lines
2.9 KiB
C#
using DS.WMS.PrintApi.Utils;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using NLog;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using DbType = SqlSugar.DbType;
|
|
namespace DS.WMS.PrintApi.Middleware
|
|
{
|
|
/// <summary>
|
|
/// SqlSugar 启动服务
|
|
/// </summary>
|
|
public static class SqlSugarSetup
|
|
{
|
|
|
|
public static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
/// <summary>
|
|
/// 默认的Sql Server的链接字符串
|
|
/// </summary>
|
|
private static string ProTag = AppSetting.Configuration["ConnectionStrings:Pro"];
|
|
|
|
private static string DataType = AppSetting.Configuration["ConnectionStrings:DbType"];
|
|
/// <summary>
|
|
/// 将模块服务添加到依赖注入服务容器中
|
|
/// </summary>
|
|
/// <param name="services">依赖注入服务容器</param>
|
|
/// <returns></returns>
|
|
public static IServiceCollection AddSqlSugarSetup(this IServiceCollection services)
|
|
{
|
|
if (services == null) throw new ArgumentNullException(nameof(services));
|
|
SqlSugarScope sqlSugar = new SqlSugarScope(new List<ConnectionConfig>()
|
|
{
|
|
new ConnectionConfig()
|
|
{
|
|
ConfigId = "1288018625843826688", DbType = DataType.ToEnum<DbType>(), ConnectionString = ProTag,
|
|
InitKeyType = InitKeyType.Attribute, IsAutoCloseConnection = true
|
|
},
|
|
//new ConnectionConfig(){ ConfigId="2", DbType=DbType.SqlServer, ConnectionString=DevTag,InitKeyType=InitKeyType.Attribute,IsAutoCloseConnection=true,AopEvents=aop}
|
|
});
|
|
//db.ChangeDatabase(configId);
|
|
//记录数据库配置
|
|
//Console.WriteLine("数据库配置:"+JsonConvert.SerializeObject(db.CurrentConnectionConfig));
|
|
//Logger.Log(LogLevel.Trace, JsonConvert.SerializeObject(db.CurrentConnectionConfig));
|
|
sqlSugar.Ado.CommandTimeOut = 30;
|
|
sqlSugar.Aop.OnLogExecuting = (sql, pars) =>
|
|
{
|
|
Logger.Log(LogLevel.Info,
|
|
DateTime.Now.ToString() + "\r\n" +
|
|
UtilMethods.GetSqlString(DataType.ToEnum<DbType>(), sql, pars));
|
|
};
|
|
sqlSugar.Aop.OnError = (exp) => //执行SQL 错误事件
|
|
{
|
|
// Console.WriteLine(DateTime.Now.ToString() + "\r\n" + exp.Sql + "\r\n" + exp.Parametres);
|
|
Logger.Error(DateTime.Now.ToString() + "\r\n" + exp.Sql + "\r\n" + exp.Parametres);
|
|
|
|
//Logger.Log(LogLevel.Error, DateTime.Now.ToString() + "\r\n" + exp.Sql + "\r\n" + exp.Parametres);
|
|
|
|
//exp.sql exp.parameters 可以拿到参数和错误Sql
|
|
};
|
|
|
|
services.AddSingleton<ISqlSugarClient>(sqlSugar); //这边是SqlSugarScope用AddSingleton
|
|
|
|
return services;
|
|
}
|
|
}
|
|
}
|