Share via


SelectExpressionFactory.Create Method

Definition

Overloads

Create(RelationalQueryCompilationContext)

Creates a new SelectExpression.

Create(RelationalQueryCompilationContext, String)

Creates a new SelectExpression.

Create(RelationalQueryCompilationContext)

Creates a new SelectExpression.

public virtual Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression Create (Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext queryCompilationContext);
abstract member Create : Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext -> Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression
override this.Create : Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext -> Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression
Public Overridable Function Create (queryCompilationContext As RelationalQueryCompilationContext) As SelectExpression

Parameters

queryCompilationContext
RelationalQueryCompilationContext

Context for the query compilation.

Returns

A SelectExpression.

Implements

Applies to

Create(RelationalQueryCompilationContext, String)

Creates a new SelectExpression.

public virtual 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
override this.Create : Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext * string -> Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression
Public Overridable Function Create (queryCompilationContext As RelationalQueryCompilationContext, alias As String) As SelectExpression

Parameters

queryCompilationContext
RelationalQueryCompilationContext

Context for the query compilation.

alias
String

The alias of this SelectExpression.

Returns

A SelectExpression.

Implements

Applies to