SelectMany(TInput, TResult) 方法 (CepWindowStream(CepWindow(TInput)), Expression(Func(CepWindow(TInput), CepWindow(TInput))), Expression(Func(CepWindow(TInput), TInput, TResult)))
支援針對視窗型資料流,依運算排序。
命名空間: Microsoft.ComplexEventProcessing.Linq
組件: Microsoft.ComplexEventProcessing (在 Microsoft.ComplexEventProcessing.dll 中)
語法
public static CepOrderableStream<TResult> SelectMany<TInput, TResult>(
this CepWindowStream<CepWindow<TInput>> source,
Expression<Func<CepWindow<TInput>, CepWindow<TInput>>> bind,
Expression<Func<CepWindow<TInput>, TInput, TResult>> selector
)
型別參數
- TInput
輸入事件裝載的類型。
- TResult
輸出事件裝載的類型。
參數
- source
型別:Microsoft.ComplexEventProcessing.Linq. . :: . .CepWindowStream< (Of < ( <'CepWindow< (Of < ( <'TInput> ) > ) >> ) > ) >
資料流來源。
- bind
型別:System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'CepWindow< (Of < ( <'TInput> ) > ) >, CepWindow< (Of < ( <'TInput> ) > ) >> ) > ) >> ) > ) >
在兩個 "from" 子句中繫結元素的繫結運算式。
- selector
型別:System.Linq.Expressions. . :: . .Expression< (Of < ( <'Func< (Of < ( <'CepWindow< (Of < ( <'TInput> ) > ) >, TInput, TResult> ) > ) >> ) > ) >
結果選取器。
傳回值
型別:Microsoft.ComplexEventProcessing.Linq. . :: . .CepOrderableStream< (Of < ( <'TResult> ) > ) >
可以排序的資料流。
使用注意事項
在 Visual Basic 及 C# 中,您可以在任何型別 CepWindowStream< (Of < ( <'CepWindow< (Of < ( <'TInput> ) > ) >> ) > ) > 的物件上將這個方法做為執行個體方法呼叫。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=sql.105) 或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=sql.105)。
備註
例如:
(from w in s.Snapshot()
from e in w
order by e.i
order by e.j descending
select e).Take(10);
這兩個 "from" 子句會轉換成 SelectMany。