CrossJoinExpression Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An expression that represents a CROSS JOIN 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 CrossJoinExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase
type CrossJoinExpression = class
inherit JoinExpressionBase
Public Class CrossJoinExpression
Inherits JoinExpressionBase
- Inheritance
Constructors
CrossJoinExpression(TableExpressionBase) |
Creates a new instance of the CrossJoinExpression class. |
Properties
Alias |
The alias assigned to this table source. (Inherited from TableExpressionBase) |
NodeType | (Inherited from TableExpressionBase) |
Table |
Gets the underlying table source to join with. (Inherited from JoinExpressionBase) |
Type | (Inherited from TableExpressionBase) |
Methods
AddAnnotation(String, Object) |
Adds an annotation to this object. Throws if an annotation with the specified name already exists. (Inherited from TableExpressionBase) |
CreateWithAnnotations(IEnumerable<IAnnotation>) |
Creates an object like this with specified annotations. |
CreateWithAnnotations(IEnumerable<IAnnotation>) |
Creates an object like this with specified annotations. (Inherited from TableExpressionBase) |
Equals(Object) | System.Linq.Expressions.Expression.Equals(System.Object) |
FindAnnotation(String) |
Gets the annotation with the given name, returning |
GetAnnotations() |
Gets all annotations on the current object. (Inherited from TableExpressionBase) |
GetHashCode() | System.Linq.Expressions.Expression.GetHashCode |
Print(ExpressionPrinter) |
Creates a printable string representation of the given expression using ExpressionPrinter. |
PrintAnnotations(ExpressionPrinter) |
Creates a printable string representation of annotations associated with the given expression using ExpressionPrinter. (Inherited from TableExpressionBase) |
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. |
VisitChildren(ExpressionVisitor) | Reduces the node and then calls the visitor delegate on the reduced expression. The method throws an exception if the node is not reducible. |
Explicit Interface Implementations
IPrintableExpression.Print(ExpressionPrinter) |
Creates a printable string representation of the given expression using ExpressionPrinter. (Inherited from TableExpressionBase) |
Extension Methods
UnwrapJoin(TableExpressionBase) |
If the given |
Applies to
Entity Framework