如何从 ProfiledDbCommand 检索 OracleCommand 参数

How to retrieve OracleCommand parameters from ProfiledDbCommand

我开始使用 StackExchange mini profiler 并想将它与 oracle 数据库一起使用。
但是当我 运行 查询时抛出异常 -

Unable to cast object of type 'StackExchange.Profiling.Data.ProfiledDbCommand' to type 'Oracle.ManagedDataAccess.Client.OracleCommand'.

我创建新连接:

this._oracleConnection = new OracleConnection(ConnectionString.Oracle);
this._dbConnection = new StackExchange.Profiling.Data.ProfiledDbConnection(this._oracleConnection, MiniProfiler.Current);


我运行查询的方法:

private long InsertData(SomeModel model, long someId, DbConnection conn)
{
    OraDynamicParams insrtParams = this.GetSomeParams(model);
    insrtParams.Add("a_some_id", someId);
    insrtParams.Add("cur_OUT", dbType: OracleDbType.RefCursor, direction: ParameterDirection.Output);
    dynamic res = conn.Query("SOME_CRUD.INSERT_PROC", insrtParams, commandType: CommandType.StoredProcedure).First();

    //...
}

注: OraDynamicParams 只是一个继承自 SqlMapper.IDynamicParameters 的 class。

在以下方法中,尝试转换为 OracleCommand:

时抛出异常
void SqlMapper.IDynamicParameters.AddParameters(IDbCommand command, SqlMapper.Identity identity)
{
    var oracmd = (OracleCommand)command; // exception!
    this.AddParameters(oracmd, identity);
}

如何解决这个问题?

我找到了解决问题的办法。

似乎在 StackExchange.Profiling.Data.ProfiledDbCommand 中有一个 属性 InternalCommand 类型 OracleCommand。从那里您可以检索所有添加的参数。

修改代码后,它看起来像这样:

void SqlMapper.IDynamicParameters.AddParameters(IDbCommand command, SqlMapper.Identity identity)
{
     // Checks if profiler is used, if it is, then retrieve `InternalCommand` property
     dynamic oracmd = command is OracleCommand ? command : ((ProfiledDbCommand)command).InternalCommand;
     this.AddParameters((OracleCommand)oracmd, identity);
}