环境:
- VS 2012
- Asp.Net Mvc 项目
- EF 6.1.0
安装:
工具-->NuGet程序包管理器-->管理解决方案的NuGet程序包 ,(如果不需要查看EF相关信息,可以不用安装EF包)
配置:
在Global.asax中 Application_Start() 方法中加入(查看EF信息,需要加):
StackExchange.Profiling.EntityFramework6.MiniProfilerEF6.Initialize();
下面是判断本地请求则开启监视 protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
页面中使用: @using StackExchange.Profiling;
<html>
<head>
<title>MiniProfiler</title>
</head>
<body>
@MiniProfiler.RenderIncludes()
</body>
</html>
效果:
在页面左上角会有响应时间,以及Sql记录数,点击可查看Sql语句
当出现红色Duplicate时,是Sql语句被重复执行,可以进行相关优化。