Click or drag to resize

JoinOperandExtensionMethods.InnerJoin Method (IJoinOperand, IEntityRelation)

Creates a new join of type INNER JOIN between the left operand the method is called on and the right operand of the specified relationship, over the relationship specified

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public static HybridJoin InnerJoin(
	this IJoinOperand leftOperand,
	IEntityRelation rightOperand
)

Parameters

leftOperand
Type: SD.LLBLGen.Pro.QuerySpec.IJoinOperand
The left operand.
rightOperand
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityRelation
The relationship to join over

Return Value

Type: HybridJoin
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