2

我尝试了 EF Tracing Provider 来检查生成的 SQL 语句,但现在我想使用 MiniProfiler,但我无法看到结果......

到目前为止我所做的:

  • 安装包: 在此处输入图像描述

  • 在 MiniProfiler.cs 中取消注释初始化

public static void PreStart()
{
    //...
    //TODO: If you are profiling EF code first try: 
    MiniProfilerEF.Initialize();
    //...
}
  • 在布局视图中添加了渲染(在关闭 body 标签之前):

    @MiniProfiler.RenderIncludes()
    

但是相对于 miniprofiler,浏览器中没有显示任何内容……我正在使用数据库优先的方法。

我错过了什么吗?

4

1 回答 1

6

应在 web.config 中添加以下代码:

<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
      //...
    <add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
    </handlers>
  </system.webServer>
于 2013-04-05T13:34:48.223 回答