We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5750ee commit bb4f19fCopy full SHA for bb4f19f
src/NHibernate/AdoNet/AbstractBatcher.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Collections.Generic;
3
using System.Data;
4
+using System.Data.Common;
5
using System.Diagnostics;
6
using System.Threading;
7
@@ -375,7 +376,7 @@ public void CloseReader(IDataReader reader)
375
376
LogDuration(duration);
377
}
378
- private Stopwatch GetReaderStopwatch(DbDataReader reader)
379
+ private Stopwatch GetReaderStopwatch(IDataReader reader)
380
{
381
var nhReader = reader as NHybridDataReader;
382
var actualReader = nhReader == null ? reader : nhReader.Target;
0 commit comments