Skip to content

Commit 030dcb9

Browse files
committed
DataReaderEnumerator passes index correctly
1 parent 4abc70e commit 030dcb9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Simple.Data.Ado/DataReaderEnumerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public IDictionary<string, object> Current
7474
get
7575
{
7676
if (!_lastRead) throw new InvalidOperationException();
77-
return _reader.ToDictionary();
77+
return _reader.ToDictionary(_index);
7878
}
7979
}
8080

0 commit comments

Comments
 (0)