gpt4 book ai didi

entity-framework - MvcMiniProfiler可以显示SQL参数值吗?

转载 作者:行者123 更新时间:2023-12-03 11:28:03 26 4
gpt4 key购买 nike

我一直在尝试使用MvcMiniProfiler替代EFTracingProvider,因为它配置起来非常简单。

它将很好地显示sql,但我也想查看参数值。

insert [dbo].[PersonName]([Prefix], [GivenName], [MiddleName], [FamilyName], [Affix])
values (@0, @1, @2, @3, @4)
select [Id]
from [dbo].[PersonName]
where @@ROWCOUNT > 0 and [Id] = scope_identity()

MvcMiniProfiler可以显示sql参数值吗?

这是我的Global.asax。我正在使用代码优先的EF 4.3.1。
protected void Application_Start()
{
Bootstrapper.Initialize();

AreaRegistration.RegisterAllAreas();

RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);

MiniProfilerEF.Initialize();
}

protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start(ProfileLevel.Verbose);
}
}

protected void Application_EndRequest()
{
MiniProfiler.Stop();
}

最佳答案

如果要使用SQL Server Formatter,请尝试添加:

MiniProfiler.Settings.SqlFormatter = 
new StackExchange.Profiling.SqlFormatters.SqlServerFormatter();

Application_Start

关于entity-framework - MvcMiniProfiler可以显示SQL参数值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9994903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com