在项目中用Nuget 安装 MiniProfiler :
在global.cs的Application_Start事件里面增加代码: StackExchange.Profiling.MiniProfilerEF.Initialize(); 出现下面错误:
这个是什么原因啊?
EF4.5.1+MVC4
1、依次:Install-Package MiniProfiler,Install-Package MiniProfiler.EF5,Install-Package MiniProfiler.Mvc4
2、在_layout.cshtml 中加入
@using StackExchange.Profiling
<!DOCTYPE html>
..........
@MiniProfiler.RenderIncludes()
</body>
3.1、在Global.asax中加入:
protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
3.2 如果要看SQL的分析,要加入:
protected void Application_Start()
{
MiniProfilerEF.InitializeEF42();
需要 安装MiniProfiler、MiniProfiler.EF、MiniProfiler.MVC4,同时会自动安装依赖组件:WebActivator,同时也会自动在项目里面添加代码文件:App_Start/MiniProfiler.cs
还是不行啊