Freigeben über


DbRawSqlQuery.ToListAsync-Methode (CancellationToken)

[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.]

Erstellt aus der Abfrage eine List<T>, indem sie asynchron aufgelistet wird.

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

Syntax

'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public Overridable Function ToListAsync ( _
    cancellationToken As CancellationToken _
) As Task(Of List(Of Object))
'Usage
Dim instance As DbRawSqlQuery 
Dim cancellationToken As CancellationToken 
Dim returnValue As Task(Of List(Of Object))

returnValue = instance.ToListAsync(cancellationToken)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public virtual Task<List<Object>> ToListAsync(
    CancellationToken cancellationToken
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
virtual Task<List<Object^>^>^ ToListAsync(
    CancellationToken cancellationToken
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
abstract ToListAsync : 
        cancellationToken:CancellationToken -> Task<List<Object>> 
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
override ToListAsync : 
        cancellationToken:CancellationToken -> Task<List<Object>> 
public function ToListAsync(
    cancellationToken : CancellationToken
) : Task<List<Object>>

Parameter

Rückgabewert

Typ: System.Threading.Tasks.Task<List<Object>>
Eine Aufgabe, die den asynchronen Vorgang darstellt.Das Aufgabeergebnis enthält eine List<T>, die Elemente aus der Abfrage enthält.

Hinweise

Mehrere aktive Vorgänge für dieselbe Kontextinstanz werden nicht unterstützt. Verwenden Sie await, um sicherzustellen, dass sämtliche asynchronen Vorgänge abgeschlossen sind, bevor eine andere Methode in diesem Kontext aufgerufen wird.

Siehe auch

Verweis

DbRawSqlQuery Klasse

ToListAsync-Überladung

System.Data.Entity.Infrastructure-Namespace