使用MvcMiniProfiler分析Subsonic SQL

时间:2012-03-01 21:33:06

标签: subsonic3 mvc-mini-profiler

有人在使用MvcMiniProfiler分析他们的Subsonic sql查询方面是否有任何成功?我似乎无法确切地找到在Subsonic中挂钩到SqlConnection创建过程的位置。

1 个答案:

答案 0 :(得分:1)

我从来没有找到一个非常好的方法来做到这一点,但我找到了一些有效的方法。我无法继承SubSonic.DataProviders.DbDataProvider类,因为构造函数是“内部的”(不是很棒)。所以我只是将源代码复制到我的项目中并进行了一些更改。

必须更改的主要代码行是“CreateConnection”方法,需要返回ProfiledDbConnection。

public DbConnection CreateConnection(string connectionString)
        {
            DbConnection conn = Factory.CreateConnection();
            conn.ConnectionString = connectionString;
            if(conn.State == ConnectionState.Closed) conn.Open();
            return conn;
        }

由于Connection不再是SqlConnection,因此在某些现有代码中导致了转换错误。为了解决这些问题,我更改了“ExecuteDataSet”方法,以便从范围而不是工厂使用Connection。

public DataSet ExecuteDataSet(QueryCommand qry)
{
            if (Log != null)
                Log.WriteLine(qry.CommandSql);
#if DEBUG
            //Console.Error.WriteLine("ExecuteDataSet(QueryCommand): {0}.", qry.CommandSql);
#endif
            using (AutomaticConnectionScope scope = new AutomaticConnectionScope(this))
            {
                DbCommand cmd = scope.Connection.CreateCommand();
                cmd.CommandText = qry.CommandSql;
                cmd.CommandType = qry.CommandType;
                DataSet ds = new DataSet();
                cmd.Connection = scope.Connection;
                AddParams(cmd, qry);
                DbDataAdapter da = Factory.CreateDataAdapter();
                da.SelectCommand = cmd;
                da.Fill(ds);

                return ds;
            }
        }

我还更改了“ExecuteScalar”方法以使用范围Connection。

public object ExecuteScalar(QueryCommand qry)
        {
            if (Log != null)
                Log.WriteLine(qry.CommandSql);

#if DEBUG
            //Console.Error.WriteLine("ExecuteScalar(QueryCommand): {0}.", qry.CommandSql);
            //foreach (var param in qry.Parameters) {
            //    if(param.ParameterValue==null)
            //        Console.Error.WriteLine(param.ParameterName + " = NULL");
            //    else
            //        Console.Error.WriteLine(param.ParameterName + " = " + param.ParameterValue.ToString());
            //}
#endif

            object result;
            using (AutomaticConnectionScope automaticConnectionScope = new AutomaticConnectionScope(this))
            {
                DbCommand cmd = automaticConnectionScope.Connection.CreateCommand();
                cmd.Connection = automaticConnectionScope.Connection;
                cmd.CommandType = qry.CommandType;
                cmd.CommandText = qry.CommandSql;
                AddParams(cmd, qry);
                result = cmd.ExecuteScalar();
            }

            return result;
        }

现在一切似乎都在起作用。我目前正在使用IOC来确定数据库类本身是使用此ProfilingDbDataProvider还是现有的DbDataProvider。我在Context类的代码生成中将其更改为从IOC拉取而不是使用ProviderFactory。

希望能帮助别人。