ColumnExpression Class

Definition

A column expression.

public class ColumnExpression : System.Linq.Expressions.Expression
[System.Diagnostics.DebuggerDisplay("Column: {ToString()}")]
public class ColumnExpression : System.Linq.Expressions.Expression
type ColumnExpression = class
    inherit Expression
[<System.Diagnostics.DebuggerDisplay("Column: {ToString()}")>]
type ColumnExpression = class
    inherit Expression
Public Class ColumnExpression
Inherits Expression
Inheritance
ColumnExpression
Attributes

Constructors

ColumnExpression(String, IProperty, TableExpressionBase)

Creates a new instance of a ColumnExpression.

ColumnExpression(String, Type, TableExpressionBase)

Creates a new instance of a ColumnExpression.

Properties

IsNullable

Gets a value indicating whether this column expression can contain null.

Name

Gets the column name.

NodeType

Returns the node type of this Expression. (Inherited from Expression.)

Property

The corresponding property.

Table

The target table.

TableAlias

The target table alias.

Type

Gets the static type of the expression that this Expression represents. (Inherited from Expression.)

Methods

Accept(ExpressionVisitor)

Dispatches to the specific visit method for this node type.

Equals(Object)

Tests if this object is considered equal to another.

GetHashCode()

Returns a hash code for this object.

ToString()

Creates a String representation of the Expression.

VisitChildren(ExpressionVisitor)

Reduces the node and then calls the Visit(Expression) method passing the reduced expression. Throws an exception if the node isn't reducible.

Applies to