Share via


ColumnExpression Constructors

Definition

Overloads

ColumnExpression(Type, RelationalTypeMapping)

Creates a new instance of the ColumnExpression class.

ColumnExpression(String, String, Type, RelationalTypeMapping, Boolean)

Creates a new instance of the ColumnExpression class.

ColumnExpression(Type, RelationalTypeMapping)

Source:
ColumnExpression.cs
Source:
ColumnExpression.cs
Source:
ColumnExpression.cs

Creates a new instance of the ColumnExpression class.

protected ColumnExpression (Type type, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression : Type * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression
Protected Sub New (type As Type, typeMapping As RelationalTypeMapping)

Parameters

type
Type

The Type of the expression.

typeMapping
RelationalTypeMapping

The RelationalTypeMapping associated with the expression.

Applies to

ColumnExpression(String, String, Type, RelationalTypeMapping, Boolean)

Source:
ColumnExpression.cs

Creates a new instance of the ColumnExpression class.

public ColumnExpression (string name, string tableAlias, Type type, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping, bool nullable);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression : string * string * Type * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression
Public Sub New (name As String, tableAlias As String, type As Type, typeMapping As RelationalTypeMapping, nullable As Boolean)

Parameters

name
String

The name of the column.

tableAlias
String

The alias of the table to which this column refers.

type
Type

The Type of the expression.

typeMapping
RelationalTypeMapping

The RelationalTypeMapping associated with the expression.

nullable
Boolean

Whether this expression represents a nullable column.

Applies to