Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbDataReader::GetEnumerator Method ()

 

Returns an IEnumerator that can be used to iterate through the rows in the data reader.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
virtual IEnumerator^ GetEnumerator() abstract

Return Value

Type: System.Collections::IEnumerator^

An IEnumerator that can be used to iterate through the rows in the data reader.

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
Return to top
Show:
© 2017 Microsoft