Freigeben über


DbRawSqlQuery<TElement>.LongCountAsync-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 asynchron ein Int64 zurück, das die Gesamtzahl der Elemente in der Abfrage darstellt.

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

Syntax

'Declaration
Public Function LongCountAsync As Task(Of Long)
'Usage
Dim instance As DbRawSqlQuery 
Dim returnValue As Task(Of Long)

returnValue = instance.LongCountAsync()
public Task<long> LongCountAsync()
public:
Task<long long>^ LongCountAsync()
member LongCountAsync : unit -> Task<int64> 
public function LongCountAsync() : Task<long>

Rückgabewert

Typ: System.Threading.Tasks.Task<Int64>
Eine Aufgabe, die den asynchronen Vorgang darstellt.Das Aufgabeergebnis enthält die Anzahl der Elemente im Abfrageergebnis.

Ausnahmen

Ausnahme Bedingung
OverflowException

Die Anzahl der Elemente im Abfrageergebnis 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.

Siehe auch

Verweis

DbRawSqlQuery<TElement> Klasse

LongCountAsync-Überladung

System.Data.Entity.Infrastructure-Namespace