在.Net框架中,我使用MiniProfiler进行MySql连接命令记录。在我当前的AspNetCore解决方案中,MiniProfiler也不显示sql命令。我应该使用哪些MiniProfiler选项进行记录?

最佳答案

如果您使用的是Entity Framework Core,则需要:


安装MiniProfiler.EntityFrameworkCore NuGet软件包。
在您的Startup.cs中,呼叫AddEntityFramework()


public void ConfigureServices(IServiceCollection services)
{
    services.AddMiniProfiler()
            .AddEntityFramework();
}


资料来源:MiniProfiler documentation

关于mysql - MiniProfiler for AspNetCore MySql连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59331208/

10-11 10:25