Share via


LateralJoinExpression Class

Definition

Represents a SQL LATERAL JOIN expression.

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

Constructors

Name Description
LateralJoinExpression(TableExpressionBase)

Creates a new instance of LateralJoinExpression.

Properties

Name Description
Alias

Gets the alias.

(Inherited from TableExpressionBase)
NodeType

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

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

Name Description
Accept(ExpressionVisitor)

Dispatches to the specific visit method for this node type.

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