ISelectExpressionFactory.Create 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.
Overloads
Create(RelationalQueryCompilationContext) |
Creates a new SelectExpression. |
Create(RelationalQueryCompilationContext, String) |
Creates a new SelectExpression. |
Create(RelationalQueryCompilationContext)
Creates a new SelectExpression.
public Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression Create (Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext queryCompilationContext);
abstract member Create : Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext -> Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression
Public Function Create (queryCompilationContext As RelationalQueryCompilationContext) As SelectExpression
Parameters
- queryCompilationContext
- RelationalQueryCompilationContext
Context for the query compilation.
Returns
A SelectExpression.
Applies to
Create(RelationalQueryCompilationContext, String)
Creates a new SelectExpression.
public Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression Create (Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext queryCompilationContext, string alias);
abstract member Create : Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext * string -> Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression
Public Function Create (queryCompilationContext As RelationalQueryCompilationContext, alias As String) As SelectExpression
Parameters
- queryCompilationContext
- RelationalQueryCompilationContext
Context for the query compilation.
- alias
- String
The alias.
Returns
A SelectExpression.
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