IDbAsyncEnumerable<T> Interface

 

Asynchronous version of the IEnumerable<T> interface that allows elements of the enumerable sequence to be retrieved asynchronously. This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes.

Namespace:   System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

public interface IDbAsyncEnumerable<out T> : IDbAsyncEnumerable

Type Parameters

outT

The type of objects to enumerate.

NameDescription
System_CAPS_pubmethodGetAsyncEnumerator()

Gets an enumerator that can be used to asynchronously enumerate the sequence.