次の方法で共有


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

定義

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

public 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>>
Public Function CompileAsyncQuery(Of TResult) (queryModel As QueryModel) As Func(Of QueryContext, IAsyncEnumerable(Of TResult))

型パラメーター

TResult

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

パラメーター

queryModel
Remotion.Linq.QueryModel

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

戻り値

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

適用対象