I am working on a project which use miniprofiler (3.0.10) with Simple.Data and SqlServer database. Please could anyone point me to use miniprofiler to log sql query details by amending below code sample which used with MySql.
var db = Database.OpenConnection(ConnectionString);
using (var rawCnn = new MySqlConnection(ConnectionString))
using (var profiledCnn = new MvcMiniProfiler.Data.ProfiledDbConnection(rawCnn, MiniProfiler.Current);
Thanks, DSR