GroupBy(TPayload, TGroupingKey)-Methode (CepStream(TPayload), Expression(Func(TPayload, TGroupingKey)))
Partitioniert den Eingabedatenstrom nach dem angegebenen Gruppierungsschlüssel.
Namespace: Microsoft.ComplexEventProcessing.Linq
Assembly: Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
Syntax
public static CepGroupingStreams<TPayload, TGroupingKey> GroupBy<TPayload, TGroupingKey>(
this CepStream<TPayload> source,
Expression<Func<TPayload, TGroupingKey>> keySelector
)
Typparameter
- TPayload
Der Nutzlasttyp des Eingabeereignisses.
- TGroupingKey
Der Ereignistyp des Gruppierungsschlüssels.
Parameter
- source
Typ: Microsoft.ComplexEventProcessing.Linq. . :: . .CepStream< (Of < ( <'TPayload> ) > ) >
Der Eingabedatenstrom.
- keySelector
Typ: System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'TPayload, TGroupingKey> ) > ) >> ) > ) >
Ausdrücke zum Projizieren des Gruppierungsschlüssels.
Rückgabewert
Typ: Microsoft.ComplexEventProcessing.Linq. . :: . .CepGroupingStreams< (Of < ( <'TPayload, TGroupingKey> ) > ) >
Gruppen von Datenströmen.
Hinweis zur Verwendung
In Visual Basic und C# können Sie die Methode als Instanzenmethode für jedes Objekt vom Typ CepStream< (Of < ( <'TPayload> ) > ) > aufrufen. Wenn Sie Instanzmethodensyntax zum Aufruf dieser Methode verwenden, vernachlässigen Sie den ersten Parameter. Weitere Informationen finden Sie unter https://msdn.microsoft.com/de-de/library/bb384936(v=sql.105) oder https://msdn.microsoft.com/de-de/library/bb383977(v=sql.105).