我的 MVC3 应用程序存在一些性能问题。这就是我决定实施迷你分析器的原因。
我将 MVC3 与 EF(和 Razor Views)一起使用。因为我使用的是 DB-first 方法,所以没有 dbo.__MigrationHistory。那么我如何告诉 Mini-Profiler 停止寻找它呢?
这就是我所做的:
全球.asax.cs:
protected void Application_Start()
{
...
MiniProfilerEF.Initialize();
}
void Application_BeginRequest(object sender, EventArgs e)
{
...
MiniProfiler.Start();
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
我尝试了这个问题的答案,但我无法在我的 DBContext (DAL) 中使用“数据库”。