ObjectResult<T>::GetEnumerator Method ()
.NET Framework (current version)
Returns an enumerator that iterates through the query results.
Assembly: System.Data.Entity (in System.Data.Entity.dll)
Return Value
Type: System.Collections.Generic::IEnumerator<T>^An enumerator that iterates through the query results.
Implements
IEnumerable<T>::GetEnumerator()The enumerator must be disposed when no longer needed. Using the foreach statement (For Each in Visual Basic) ensures that the enumerator is correctly disposed when iteration over the results is complete.
The example in this topic is based on the AdventureWorks Sales Model. The example returns an ObjectResult<T> from the Execute method. Then it gets an enumerator and iterates through the query results. At the end, it releases the enumerator and the ObjectResult<T> object.
.NET Framework
Available since 3.5
Available since 3.5
Show: