已经更新了我的miniprofiler以登录到sqlserver,我仍然在profiler/results-list
中看到过时的结果
我可以在表格中查看新的探查器数据,也可以导航到例如profiler/results?id=e25e3a5a-fd92-433b-b3f2-98eb9d44d36f
是比列表中显示的配置文件新的配置文件,但我希望列表显示所有结果。
这是配置
MiniProfiler.Configure(new MiniProfilerOptions
{
RouteBasePath = "~/profiler",
Storage = new StackExchange.Profiling.Storage.SqlServerStorage(<conn_string>),
}
.AddViewProfiling() // Add MVC view profiling
.AddEntityFramework() // Add EF Core
);
有什么想法吗?