DbDataReader.GetEnumerator Method ()
.NET Framework (current version)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Returns an IEnumerator that can be used to iterate through the rows in the data reader.
Assembly: System.Data (in System.Data.dll)
Return Value
Type: System.Collections.IEnumeratorAn IEnumerator that can be used to iterate through the rows in the data reader.
Implements
IEnumerable.GetEnumerator()Although you can use this method to retrieve an explicit constructor, in languages that support an explicit foreach construct, it is simpler to use the looping construct directly in order to iterate through the rows in the data reader.
If you implement this method, it should return a new instance of DbEnumerator or ensure that your enumerator returns IDataRecord objects.
Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Available since 10
.NET Framework
Available since 2.0
Show: