Share via


ColumnExpression Constructors

Definition

Overloads

ColumnExpression(String, IProperty, TableExpressionBase)

Creates a new instance of a ColumnExpression.

ColumnExpression(String, Type, TableExpressionBase)

Creates a new instance of a ColumnExpression.

ColumnExpression(String, IProperty, TableExpressionBase)

Creates a new instance of a ColumnExpression.

public ColumnExpression (string name, Microsoft.EntityFrameworkCore.Metadata.IProperty property, Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase tableExpression);
new Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression : string * Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression
Public Sub New (name As String, property As IProperty, tableExpression As TableExpressionBase)

Parameters

name
String

The column name.

property
IProperty

The corresponding property.

tableExpression
TableExpressionBase

The target table expression.

Applies to

ColumnExpression(String, Type, TableExpressionBase)

Creates a new instance of a ColumnExpression.

public ColumnExpression (string name, Type type, Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase tableExpression);
new Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression : string * Type * Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression
Public Sub New (name As String, type As Type, tableExpression As TableExpressionBase)

Parameters

name
String

The column name.

type
Type

The column type.

tableExpression
TableExpressionBase

The target table expression.

Applies to