QueryCompilationContext.CreateQueryExecutorExpression<TResult> 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 the query executor func which gives results for this query.
[System.Diagnostics.CodeAnalysis.Experimental("EF9100")]
public virtual System.Linq.Expressions.Expression<Func<Microsoft.EntityFrameworkCore.Query.QueryContext,TResult>> CreateQueryExecutorExpression<TResult> (System.Linq.Expressions.Expression query);
[<System.Diagnostics.CodeAnalysis.Experimental("EF9100")>]
abstract member CreateQueryExecutorExpression : System.Linq.Expressions.Expression -> System.Linq.Expressions.Expression<Func<Microsoft.EntityFrameworkCore.Query.QueryContext, 'Result>>
override this.CreateQueryExecutorExpression : System.Linq.Expressions.Expression -> System.Linq.Expressions.Expression<Func<Microsoft.EntityFrameworkCore.Query.QueryContext, 'Result>>
Public Overridable Function CreateQueryExecutorExpression(Of TResult) (query As Expression) As Expression(Of Func(Of QueryContext, TResult))
Type Parameters
- TResult
The result type of this query.
Parameters
- query
- Expression
The query to generate executor for.
Returns
Returns Func<T,TResult> which can be invoked to get results of this query.
- Attributes
Applies to
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Entity Framework