Class CrossApplyExpression
- Namespace
- Microsoft.EntityFrameworkCore.Query.SqlExpressions
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
An expression that represents a CROSS APPLY in a SQL tree.
This type is typically used by database providers (and other extensions). It is generally not used in application code.
public class CrossApplyExpression : JoinExpressionBase, IPrintableExpression
- Inheritance
-
CrossApplyExpression
- Implements
-
IPrintableExpression
- Inherited Members
Constructors
CrossApplyExpression(TableExpressionBase)
Creates a new instance of the CrossApplyExpression class.
public CrossApplyExpression(TableExpressionBase table)
Parameters
tableTableExpressionBaseA table source to CROSS APPLY with.
Methods
CreateWithAnnotations(IEnumerable<IAnnotation>)
protected override TableExpressionBase CreateWithAnnotations(IEnumerable<IAnnotation> annotations)
Parameters
annotationsIEnumerable<IAnnotation>
Returns
Equals(object?)
public override bool Equals(object? obj)
Parameters
objobject
Returns
GetHashCode()
public override int GetHashCode()
Returns
Print(ExpressionPrinter)
protected override void Print(ExpressionPrinter expressionPrinter)
Parameters
expressionPrinterExpressionPrinter
Update(TableExpressionBase)
Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
public virtual CrossApplyExpression Update(TableExpressionBase table)
Parameters
tableTableExpressionBaseThe Table property of the result.
Returns
- CrossApplyExpression
This expression if no children changed, or an expression with the updated children.
VisitChildren(ExpressionVisitor)
protected override Expression VisitChildren(ExpressionVisitor visitor)
Parameters
visitorExpressionVisitor