SelectMany(TInput, TGroupingKey, TBind, TResult)-Methode (CepGroupingStreams(TInput, TGroupingKey), Expression(Func(CepStream(TInput), CepStream(TBind))), Expression(Func(IKey(TGroupingKey), TBind, TResult)))
Unterstützt das Hinzufügen von Abfragelogik in einer Anweisung zum Gruppieren und Übernehmen.
Namespace: Microsoft.ComplexEventProcessing.Linq
Assembly: Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
Syntax
public static CepStream<TResult> SelectMany<TInput, TGroupingKey, TBind, TResult>(
this CepGroupingStreams<TInput, TGroupingKey> source,
Expression<Func<CepStream<TInput>, CepStream<TBind>>> bind,
Expression<Func<IKey<TGroupingKey>, TBind, TResult>> selector
)
Typparameter
- TInput
Der Nutzlasttyp der Eingabeereignisse.
- TGroupingKey
Der Nutzlasttyp des Gruppierungsschlüssels.
- TBind
Der Nutzlasttyp der gebundenen Ereignisse.
- TResult
Der Typ der Ausgabedatenstrom-Ereignisnutzlast.
Parameter
- source
Typ: Microsoft.ComplexEventProcessing.Linq. . :: . .CepGroupingStreams< (Of < ( <'TInput, TGroupingKey> ) > ) >
Die Datenstromquelle.
- bind
Typ: System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'CepStream< (Of < ( <'TInput> ) > ) >, CepStream< (Of < ( <'TBind> ) > ) >> ) > ) >> ) > ) >
Bindungsinformationen, die den zweiten Datenstrom an den ersten Datenstrom binden.
- selector
Typ: System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'IKey< (Of < ( <'TGroupingKey> ) > ) >, TBind, TResult> ) > ) >> ) > ) >
Zuordnungsausdruck, der eine Projektion auf die Ausgabe definiert.
Rückgabewert
Typ: Microsoft.ComplexEventProcessing.Linq. . :: . .CepStream< (Of < ( <'TResult> ) > ) >
Ein Datenstrom, der zur Anwendung weiterer Logik in der Anweisung zum Gruppieren und Übernehmen verwendet werden kann.
Hinweis zur Verwendung
In Visual Basic und C# können Sie die Methode als Instanzenmethode für jedes Objekt vom Typ CepGroupingStreams< (Of < ( <'TInput, TGroupingKey> ) > ) > 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).
Hinweise
Weitere Informationen finden Sie unter Group/Apply.
Beispiele
from e1 in inputStream
group e1 by e.i into gs
from e2 in gs
...