InExpression Class

Definition

Represents a SQL IN expression.

public class InExpression : System.Linq.Expressions.Expression
type InExpression = class
    inherit Expression
Public Class InExpression
Inherits Expression
Inheritance
InExpression

Constructors

InExpression(AliasExpression, IReadOnlyList<Expression>)

Creates a new instance of InExpression.

InExpression(AliasExpression, SelectExpression)

Creates a new instance of InExpression.

InExpression(Expression, IReadOnlyList<Expression>)

Creates a new instance of InExpression.

InExpression(Expression, SelectExpression)

Creates a new instance of InExpression.

Properties

NodeType

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

Operand

Gets the operand.

SubQuery

Gets the sub query.

Type

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

Values

Gets the values.

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