次の方法で共有


Database.CompileAsyncQuery<TResult>(QueryModel) メソッド

定義

クエリ モデルを実行できる関数に変換して、データベースからクエリ結果を非同期的に取得します。

public virtual Func<Microsoft.EntityFrameworkCore.Query.QueryContext,System.Collections.Generic.IAsyncEnumerable<TResult>> CompileAsyncQuery<TResult> (Remotion.Linq.QueryModel queryModel);
abstract member CompileAsyncQuery : Remotion.Linq.QueryModel -> Func<Microsoft.EntityFrameworkCore.Query.QueryContext, System.Collections.Generic.IAsyncEnumerable<'Result>>
override this.CompileAsyncQuery : Remotion.Linq.QueryModel -> Func<Microsoft.EntityFrameworkCore.Query.QueryContext, System.Collections.Generic.IAsyncEnumerable<'Result>>
Public Overridable Function CompileAsyncQuery(Of TResult) (queryModel As QueryModel) As Func(Of QueryContext, IAsyncEnumerable(Of TResult))

型パラメーター

TResult

クエリによって返される結果の種類。

パラメーター

queryModel
Remotion.Linq.QueryModel

実行するクエリを表すオブジェクト モデル。

戻り値

クエリを非同期的に実行する関数。

実装

適用対象