DbRawSqlQuery<TElement>.ForEachAsync-Methode (Action<TElement>, 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.]
Zählt asynchron die Abfrageergebnisse auf und führt für jedes Element die angegebene Aktion aus.
Namespace: System.Data.Entity.Infrastructure
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Function ForEachAsync ( _
action As Action(Of TElement), _
cancellationToken As CancellationToken _
) As Task
'Usage
Dim instance As DbRawSqlQuery
Dim action As Action(Of TElement)
Dim cancellationToken As CancellationToken
Dim returnValue As Task
returnValue = instance.ForEachAsync(action, _
cancellationToken)
public Task ForEachAsync(
Action<TElement> action,
CancellationToken cancellationToken
)
public:
Task^ ForEachAsync(
Action<TElement>^ action,
CancellationToken cancellationToken
)
member ForEachAsync :
action:Action<'TElement> *
cancellationToken:CancellationToken -> Task
public function ForEachAsync(
action : Action<TElement>,
cancellationToken : CancellationToken
) : Task
Parameter
- action
Typ: System.Action<TElement>
Die auszuführende Aktion.
- cancellationToken
Typ: System.Threading.CancellationToken
Ein CancellationToken, das beim Warten auf den Abschluss der Aufgabe überwacht werden soll.
Rückgabewert
Typ: System.Threading.Tasks.Task
Eine Aufgabe, die den asynchronen Vorgang darstellt.
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.