IDbAsyncEnumerable<T> 接口

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

IEnumerable<T> 接口的异步版本,它允许异步检索可枚举序列的元素。 此接口用于与实体框架查询交互且不应由自定义类来实现。

命名空间:  System.Data.Entity.Infrastructure
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
Public Interface IDbAsyncEnumerable(Of Out T) _
    Inherits IDbAsyncEnumerable
用法
Dim instance As IDbAsyncEnumerable(Of Out T)
public interface IDbAsyncEnumerable<out T> : IDbAsyncEnumerable
generic<typename T>
public interface class IDbAsyncEnumerable : IDbAsyncEnumerable
type IDbAsyncEnumerable<'T> =  
    interface 
        interface IDbAsyncEnumerable 
    end
JScript does not support generic types and methods.

类型参数

IDbAsyncEnumerable<T> 类型公开以下成员。

方法

  名称 描述
公共方法 GetAsyncEnumerator 获取一个枚举器,它可用于异步枚举序列。

顶部

请参阅

参考

System.Data.Entity.Infrastructure 命名空间