| | |
| | | ConfigId = MainDb.CurrentDbConnId, |
| | | ConnectionString = DBContext.GetMainConnectionDb().Connection, |
| | | IsAutoCloseConnection = true, |
| | | DbType = MainDb.DbType, |
| | | DbType = DBContext.DbType, |
| | | AopEvents = new AopEvents |
| | | { |
| | | OnLogExecuting = (sql, p) => |
| | |
| | | { |
| | | MiniProfiler.Current.CustomTiming("SQL:", GetParas(p) + "【SQL语句】:" + sql); |
| | | }); |
| | | //Console.Out.WriteLine(GetParas(p)); |
| | | //Console.Out.WriteLine(sql); |
| | | //Console.Out.WriteLine(); |
| | | if(AppSettings.GetValue("PrintSql").ObjToBool()) |
| | | { |
| | | Console.Out.WriteLine(GetParas(p)); |
| | | Console.Out.WriteLine(sql); |
| | | Console.Out.WriteLine(); |
| | | } |
| | | } |
| | | }, |
| | | } |