Click or drag to resize
JoinOperandExtensionMethodsCrossJoin Method (IJoinOperand, IJoinOperand)
Creates a new join of type CROSS JOIN between the left operand the method is called on and the specified right operand.

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static CrossJoin CrossJoin(
	this IJoinOperand leftOperand,
	IJoinOperand rightOperand
)

Parameters

leftOperand
Type: SD.LLBLGen.Pro.QuerySpecIJoinOperand
The left operand.
rightOperand
Type: SD.LLBLGen.Pro.QuerySpecIJoinOperand
The element to join with.

Return Value

Type: CrossJoin
the created join object

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IJoinOperand. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also