ObjectResult<T>::GetEnumerator Method ()

 

Returns an enumerator that iterates through the query results.

Namespace:   System.Data.Objects
Assembly:  System.Data.Entity (in System.Data.Entity.dll)

public:
virtual IEnumerator<T>^ GetEnumerator() sealed

Return Value

Type: System.Collections.Generic::IEnumerator<T>^

An enumerator that iterates through the query results.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.5
Return to top
Show: