Méthode QStreamable.GroupBy<TPayload, TKey> (IQStreamable<TPayload>, Expression<Func<TPayload, TKey>>)
Opérateur de partition.
Espace de noms : Microsoft.ComplexEventProcessing.Linq
Assembly : Microsoft.ComplexEventProcessing (en Microsoft.ComplexEventProcessing.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function GroupBy(Of TPayload, TKey) ( _
source As IQStreamable(Of TPayload), _
keySelector As Expression(Of Func(Of TPayload, TKey)) _
) As IQPartitionedStreamable(Of TKey, TPayload)
'Utilisation
Dim source As IQStreamable(Of TPayload)
Dim keySelector As Expression(Of Func(Of TPayload, TKey))
Dim returnValue As IQPartitionedStreamable(Of TKey, TPayload)
returnValue = source.GroupBy(keySelector)
public static IQPartitionedStreamable<TKey, TPayload> GroupBy<TPayload, TKey>(
this IQStreamable<TPayload> source,
Expression<Func<TPayload, TKey>> keySelector
)
[ExtensionAttribute]
public:
generic<typename TPayload, typename TKey>
static IQPartitionedStreamable<TKey, TPayload>^ GroupBy(
IQStreamable<TPayload>^ source,
Expression<Func<TPayload, TKey>^>^ keySelector
)
static member GroupBy :
source:IQStreamable<'TPayload> *
keySelector:Expression<Func<'TPayload, 'TKey>> -> IQPartitionedStreamable<'TKey, 'TPayload>
JScript ne prend pas en charge les types et les méthodes génériques.
Paramètres de type
- TPayload
Type de charge utile d'entrée.
- TKey
Type de clé de partition.
Paramètres
- source
Type : Microsoft.ComplexEventProcessing.Linq.IQStreamable<TPayload>
Flux d'entrée.
- keySelector
Type : System.Linq.Expressions.Expression<Func<TPayload, TKey>>
Expression de projection de clé.
Valeur de retour
Type : Microsoft.ComplexEventProcessing.Linq.IQPartitionedStreamable<TKey, TPayload>
Flux de données partitionné.
Remarque relative à l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IQStreamable<TPayload>. Lorsque vous utilisez la syntaxe de la méthode 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=sql.111) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=sql.111).