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.
类型参数
out T
要枚举的对象的类型。此类型参数是协变。即可以使用指定的类型或派生程度更高的类型。 有关协变和逆变的详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/dd799517(v=vs.113)。
IDbAsyncEnumerable<T> 类型公开以下成员。
方法
名称 | 描述 | |
---|---|---|
GetAsyncEnumerator | 获取一个枚举器,它可用于异步枚举序列。 |
顶部