gpt4 book ai didi

dapper - 有什么方法可以使用 Dapper 跟踪\记录 sql?

转载 作者:行者123 更新时间:2023-12-03 07:50:52 25 4
gpt4 key购买 nike

有没有办法将生成的 sql 转储到调试日志中?我在 winforms 解决方案中使用它,所以迷你分析器的想法对我不起作用。

最佳答案

我遇到了同样的问题,并在进行了一些搜索后实现了一些代码,但没有现成的东西。 nuget 上有一个包 MiniProfiler.Integrations我愿意分享。
更新 V2 : 它支持与其他数据库服务器一起工作,对于MySQL,它需要有MiniProfiler.Integrations.MySql
以下是使用 SQL Server 的步骤:
1.实例化连接

var factory = new SqlServerDbConnectionFactory(_connectionString);
using (var connection = ProfiledDbConnectionFactory.New(factory, CustomDbProfiler.Current))
{
// your code
}
2.所有工作完成后,如果需要,将所有命令写入文件
File.WriteAllText("SqlScripts.txt", CustomDbProfiler.Current.ProfilerContext.BuildCommands());

关于dapper - 有什么方法可以使用 Dapper 跟踪\记录 sql?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18529965/

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