您的位置:首页 > 编程语言 > ASP

性能工具MiniProfiler在Asp.Net WebForm跟踪EntityFramework

2013-06-01 15:56 267 查看
1:安装MiniProfiler

使用Nuget安装:



选择MiniProfiler.EF 默认会把MiniProfiler安装上,笔者程序是Asp.Net WebForm 不需要安装MiniProfiler.MVC3

2: 在Global.asax中添加下面代码:

void Application_BeginRequest()
{
if (Request.IsLocal)
{
  MiniProfiler.Start();
}
}

void Application_EndRequest()
{
  MiniProfiler.Stop();
}

void Application_Start(object sender, EventArgs e)
{
  StackExchange.Profiling.MiniProfilerEF.Initialize();

}

3:在页面中添加

protected override void OnPreRender(EventArgs e)
{
  Response.Write(StackExchange.Profiling.MiniProfiler.RenderIncludes());
  base.OnPreRender(e);
}

4:浏览该页面



点击左上角会出现,点击sql出现:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: