DbRawSqlQuery<TElement>.CountAsync-Methode (Func<TElement, Boolean>, 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.]
Gibt asynchron die Anzahl der Elemente in der Abfrage zurück, die eine Bedingung erfüllen.
Namespace: System.Data.Entity.Infrastructure
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Function CountAsync ( _
predicate As Func(Of TElement, Boolean), _
cancellationToken As CancellationToken _
) As Task(Of Integer)
'Usage
Dim instance As DbRawSqlQuery
Dim predicate As Func(Of TElement, Boolean)
Dim cancellationToken As CancellationToken
Dim returnValue As Task(Of Integer)
returnValue = instance.CountAsync(predicate, _
cancellationToken)
public Task<int> CountAsync(
Func<TElement, bool> predicate,
CancellationToken cancellationToken
)
public:
Task<int>^ CountAsync(
Func<TElement, bool>^ predicate,
CancellationToken cancellationToken
)
member CountAsync :
predicate:Func<'TElement, bool> *
cancellationToken:CancellationToken -> Task<int>
public function CountAsync(
predicate : Func<TElement, boolean>,
cancellationToken : CancellationToken
) : Task<int>
Parameter
- predicate
Typ: System.Func<TElement, Boolean>
Eine Funktion, mit der jedes Element auf eine Bedingung überprüft wird.
- 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<Int32>
Eine Aufgabe, die den asynchronen Vorgang darstellt.Das Aufgabeergebnis enthält die Anzahl der Elemente im Abfrageergebnis, die die Bedingung in der Prädikatfunktion erfüllen.
Ausnahmen
Ausnahme | Bedingung |
---|---|
OverflowException | Die Anzahl der Elemente im Abfrageergebnis, die die Bedingung in der Prädikatfunktion erfüllen, ist größer als MaxValue. |
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.