Specifies an inner join between two entity types.

Namespace:  Mindscape.LightSpeed.Querying
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public static Join Inner(
	IList<JoinCondition> conditions
)
Visual Basic (Declaration)
Public Shared Function Inner ( _
	conditions As IList(Of JoinCondition) _
) As Join

Parameters

conditions
Type: System.Collections.Generic..::.IList<(Of <(JoinCondition>)>)
The conditions on which the join will be made

Return Value

A Join representing an inner join between the specified entities on the specified columns.

See Also