JoinExpressionBase Class

Definition

A base class for SQL JOIN expressions.

public abstract class JoinExpressionBase : Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase
type JoinExpressionBase = class
    inherit TableExpressionBase
Public MustInherit Class JoinExpressionBase
Inherits TableExpressionBase
Inheritance
JoinExpressionBase
Derived

Constructors

JoinExpressionBase(TableExpressionBase)

Specialized constructor for use only by derived class.

Properties

Alias

Gets the alias.

(Inherited from TableExpressionBase)
NodeType

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

(Inherited from TableExpressionBase)
Predicate

Gets or sets the predicate.

QuerySource

Gets the query source.

(Inherited from TableExpressionBase)
TableExpression

The target table expression.

Type

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

(Inherited from TableExpressionBase)

Methods

HandlesQuerySource(IQuerySource)

Determines whether or not this TableExpressionBase handles the given query source.

(Inherited from TableExpressionBase)
PreProcessQuerySource(IQuerySource)

Pre-processes the given Remotion.Linq.Clauses.IQuerySource.

(Inherited from TableExpressionBase)
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