Freigeben über


ObjectQuery<T>.IDbAsyncEnumerable<T>.GetAsyncEnumerator-Methode

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Gibt einen IDbAsyncEnumerator<T> zurück, der bei der Aufzählung die angegebene SQL-Abfrage für die Datenbank ausführt.

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

Syntax

'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Function GetAsyncEnumerator As IDbAsyncEnumerator(Of T)
    Implements IDbAsyncEnumerable(Of T).GetAsyncEnumerator
'Usage
Dim instance As ObjectQuery 
Dim returnValue As IDbAsyncEnumerator(Of T)

returnValue = CType(instance, IDbAsyncEnumerable(Of T)).GetAsyncEnumerator()
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
IDbAsyncEnumerator<T> IDbAsyncEnumerable<T>.GetAsyncEnumerator()
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual IDbAsyncEnumerator<T>^ GetAsyncEnumerator() sealed = IDbAsyncEnumerable<T>::GetAsyncEnumerator
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract GetAsyncEnumerator : unit -> IDbAsyncEnumerator<'T> 
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override GetAsyncEnumerator : unit -> IDbAsyncEnumerator<'T> 
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Rückgabewert

Typ: System.Data.Entity.Infrastructure.IDbAsyncEnumerator<T>
Die Abfrageergebnisse.

Implements

IDbAsyncEnumerable<T>.GetAsyncEnumerator()

Siehe auch

Verweis

ObjectQuery<T> Klasse

System.Data.Entity.Core.Objects-Namespace