QueryableExtensions.SumAsync, méthode (IQueryable<Int64>, CancellationToken)
[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]
Calcule de façon asynchrone la somme d'une séquence de valeurs Int64.
Espace de noms : System.Data.Entity
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function SumAsync ( _
source As IQueryable(Of Long), _
cancellationToken As CancellationToken _
) As Task(Of Long)
'Utilisation
Dim source As IQueryable(Of Long)
Dim cancellationToken As CancellationToken
Dim returnValue As Task(Of Long)
returnValue = source.SumAsync(cancellationToken)
public static Task<long> SumAsync(
this IQueryable<long> source,
CancellationToken cancellationToken
)
[ExtensionAttribute]
public:
static Task<long long>^ SumAsync(
IQueryable<long long>^ source,
CancellationToken cancellationToken
)
static member SumAsync :
source:IQueryable<int64> *
cancellationToken:CancellationToken -> Task<int64>
public static function SumAsync(
source : IQueryable<long>,
cancellationToken : CancellationToken
) : Task<long>
Paramètres
- source
Type : System.Linq.IQueryable<Int64>
Séquence de valeurs Int64 dont la somme doit être calculée.
- cancellationToken
Type : System.Threading.CancellationToken
CancellationToken à observer en attendant que la tâche se termine.
Valeur de retour
Type : System.Threading.Tasks.Task<Int64>
Tâche qui représente l'opération asynchrone.Le résultat de tâche contient la somme des valeurs dans la séquence.
Remarque sur l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme une méthode d'instance sur n'importe quel objet de type IQueryable<Int64>. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.113) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.113).
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | source a la valeur null. |
InvalidOperationException | source n'implémente pas IDbAsyncQueryProvider. |
OverflowException | Le nombre d'éléments dans source est supérieur à MaxValue. |
Notes
Plusieurs opérations actives sur la même instance de contexte ne sont pas prises en charge. Utilisez « await » pour garantir que toutes les opérations asynchrones sont terminées avant d'appeler une autre méthode dans ce contexte.