Specifies a (left) outer 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 Outer<TLhs, TRhs>(
	string lhsColumnName,
	string rhsColumnName
) where TLhs : Entity where TRhs : Entity
Visual Basic (Declaration)
Public Shared Function Outer(Of TLhs As Entity, TRhs As Entity) ( _
	lhsColumnName As String, _
	rhsColumnName As String _
) As Join

Parameters

lhsColumnName
Type: System..::.String
The attribute in the first entity type on which to join.
rhsColumnName
Type: System..::.String
The attribute in the second entity type on which to join.

Type Parameters

TLhs
The first entity type to be joined.
TRhs
The second entity type to be joined.

Return Value

A Join representing a (left) outer join between the specified entities on the specified columns.

See Also