官方文檔: https://miniprofiler.com/dotnet/AspDotNetCorehtml
一、添加包 MiniProfiler.AspNetCore.Mvc 和 MiniProfiler.EntityFrameworkCoreapp
二、在 Startup.cs 中的 ConfigureServices 下添加,也能夠根據官方文檔中的說明進行相應的配置佈局
services.AddMiniProfiler().AddEntityFramework();
三、在 Startup.cs 中的 Configure 下添加htm
app.UseMiniProfiler();
四、修改 _ViewImports.cshtml ip
@using StackExchange.Profiling @addTagHelper *, MiniProfiler.AspNetCore.Mvc
五、將MiniProfiler添加到佈局文件(Shared/_Layout.cshtml)中文檔
<mini-profiler />