EntityQueryModelVisitor.CreateQueryExecutor<TResult>(QueryModel) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an action to execute this query.
public virtual Func<Microsoft.EntityFrameworkCore.Query.QueryContext,System.Collections.Generic.IEnumerable<TResult>> CreateQueryExecutor<TResult> (Remotion.Linq.QueryModel queryModel);
abstract member CreateQueryExecutor : Remotion.Linq.QueryModel -> Func<Microsoft.EntityFrameworkCore.Query.QueryContext, seq<'Result>>
override this.CreateQueryExecutor : Remotion.Linq.QueryModel -> Func<Microsoft.EntityFrameworkCore.Query.QueryContext, seq<'Result>>
Public Overridable Function CreateQueryExecutor(Of TResult) (queryModel As QueryModel) As Func(Of QueryContext, IEnumerable(Of TResult))
Type Parameters
- TResult
The type of results that the query returns.
Parameters
- queryModel
- Remotion.Linq.QueryModel
The query.
Returns
An action that returns the results of the query.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework