CrossJoinExpression Class

Definition

Represents a SQL CROSS JOIN expression.

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

Constructors

CrossJoinExpression(TableExpressionBase)

Creates a new instance of a CrossJoinExpression.

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.

(Inherited from JoinExpressionBase)
QuerySource

Gets the query source.

(Inherited from TableExpressionBase)
TableExpression

The table expression.

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

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.

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)
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.

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.

(Inherited from JoinExpressionBase)

Applies to