次の方法で共有


SelectMany(TInput, TResult) メソッド (CepWindowStream(CepWindow(TInput)), Expression(Func(CepWindow(TInput), CepWindow(TInput))), Expression(Func(CepWindow(TInput), TInput, TResult)))

ウィンドウ ストリームに対して ORDER BY 操作をサポートします。

名前空間:  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
    出力イベント ペイロードの型。

パラメーター

戻り値

型: Microsoft.ComplexEventProcessing.Linq. . :: . .CepOrderableStream< (Of < ( <'TResult> ) > ) >
順序付けできるストリーム。

使用に関するメモ

Visual Basic および C# では、このメソッドを型 CepWindowStream< (Of < ( <'CepWindow< (Of < ( <'TInput> ) > ) >> ) > ) > の任意のオブジェクトのインスタンス メソッドとして呼び出すことができます。このメソッドを呼び出すためにインスタンス メソッドの構文を使う場合は、最初のパラメーターを省略してください。詳細については、「https://msdn.microsoft.com/ja-jp/library/bb384936(v=sql.105)」または「https://msdn.microsoft.com/ja-jp/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);

2 つの FROM 句は SelectMany に変換されます。

関連項目

参照

CepStream クラス

SelectMany オーバーロード

Microsoft.ComplexEventProcessing.Linq 名前空間