Click or drag to resize
JoinOperandExtensionMethodsFullJoin Method (IJoinOperand, IJoinOperand)
Creates a new join of type FULL 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 InnerOuterJoin FullJoin(
	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: InnerOuterJoin
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