We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3597409 commit d300e0bCopy full SHA for d300e0b
src/NHibernate/Driver/OracleDataClientDriverBase.cs
@@ -242,6 +242,11 @@ public override DbCommand UnwrapDbCommand(DbCommand command)
242
return command is OracleDbCommandWrapper wrapper ? wrapper.Command : command;
243
}
244
245
+ public override DbDataReader ExecuteReader(DbCommand cmd)
246
+ {
247
+ return new DirectCastDbDataReader(cmd.ExecuteReader());
248
+ }
249
+
250
System.Type IEmbeddedBatcherFactoryProvider.BatcherFactoryClass => typeof(OracleDataClientBatchingBatcherFactory);
251
252
0 commit comments