请问 .NET Core 中如何跟踪 Dapper 最终执行的 SQL 语句?
比如下面的 Dapper 代码
using (var conn = ConnectionFactory.Default) { return (await conn.QueryAsync<BlogPost>( "[xxx]", new { siteCategoryType, itemcount, listOrder }, commandType: CommandType.StoredProcedure)).ToList(); }
miniprofiler
MiniProfiler.Integrations 不支持 .NET Core
这个得在dapper源码里看吧
VS 2017 可以直接查看源码:工具 > 选项 > 文本编辑器 > C# > 高级 > 启用导航到反编译源(试验)
最终执行的不就是你传入的“[xxx]”嘛