Share via


PredicateJoinExpressionBase Class

Definition

A base class for SQL JOIN expressions that have predicates.

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

Constructors

PredicateJoinExpressionBase(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.

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