gpt4 book ai didi

c# - 如何将 mvc-mini-profiler 与 mysql 连接一起使用?

转载 作者:行者123 更新时间:2023-11-29 00:53:18 27 4
gpt4 key购买 nike

我目前正在尝试使用 mvc-mini-profiler使用 MySQL 连接。有没有办法使用某种自定义包装器来做到这一点?

var mysqlConn = new MySqlConnection("Data Source=localhost; ...");
string commandText = "SELECT ...";

ProfiledDbConnection profiledConn = new ProfiledDbConnection(mysqlConn, MiniProfiler.Current);

var sqlCom = new MySqlCommand(commandText, profiledConn); // error, expects MySQLConnection, not DBConnection

谢谢!

最佳答案

使用:

var sqlCom = profiledConn.CreateCommand(); 
sqlCom.CommandText = commandText;

拦截命令对于分析工作至关重要。

关于c# - 如何将 mvc-mini-profiler 与 mysql 连接一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7321336/

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