在ServiceStack中,我使用MiniProfiler配置为使用SqlServerStorage存储配置文件。这些配置文件被记录到数据库中的“MiniProfilers”中。表没有问题。是否有一个查看器可以从MiniProfilers表中呈现数据(尤其是json)?
此示例显示了如何初始化SqlServerStorage。从Configure:
上的AppHost.cs调用该方法ngSanitize
答案 0 :(得分:0)
在您的HTML页面中(就在< / HEAD>之前)添加以下行
@ServiceStack.MiniProfiler.Profiler.RenderIncludes().AsRaw()
在Application_Start(Global.asax)中添加以下行
Profiler.Settings.PopupRenderPosition = RenderPosition.Left;
Profiler.Settings.SqlFormatter = new SqlServerFormatter();
它会在页面的左上角显示一个小标签,您可以在其中点击以显示更多信息。