SelectMany(TInput, TGroupingKey, TBind, TResult) 方法 (CepGroupingStreams(TInput, TGroupingKey), Expression(Func(CepStream(TInput), CepStream(TBind))), Expression(Func(IKey(TGroupingKey), TBind, TResult)))
支援在群組及套用內部加入查詢邏輯。
命名空間: Microsoft.ComplexEventProcessing.Linq
組件: Microsoft.ComplexEventProcessing (在 Microsoft.ComplexEventProcessing.dll 中)
語法
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
)
型別參數
- TInput
輸入事件的裝載類型。
- TGroupingKey
群組索引鍵的裝載類型。
- TBind
繫結事件的裝載類型。
- TResult
輸出資料流事件裝載的類型。
參數
- source
型別:Microsoft.ComplexEventProcessing.Linq. . :: . .CepGroupingStreams< (Of < ( <'TInput, TGroupingKey> ) > ) >
資料流來源。
- bind
型別:System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'CepStream< (Of < ( <'TInput> ) > ) >, CepStream< (Of < ( <'TBind> ) > ) >> ) > ) >> ) > ) >
繫結資訊,此資訊會將第二個資料流繫結至第一個資料流。
- selector
型別:System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'IKey< (Of < ( <'TGroupingKey> ) > ) >, TBind, TResult> ) > ) >> ) > ) >
定義輸出之投射的對應運算式。
傳回值
型別:Microsoft.ComplexEventProcessing.Linq. . :: . .CepStream< (Of < ( <'TResult> ) > ) >
可在群組和套用中用來進一步套用邏輯的資料流。
使用注意事項
在 Visual Basic 及 C# 中,您可以在任何型別 CepGroupingStreams< (Of < ( <'TInput, TGroupingKey> ) > ) > 的物件上將這個方法做為執行個體方法呼叫。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=sql.105) 或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=sql.105)。
備註
如需詳細資訊,請參閱<群組及套用>。
範例
from e1 in inputStream
group e1 by e.i into gs
from e2 in gs
...