Specifies a (left) outer join between two entries in the Mappings collection.

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(
	string lhs,
	string rhs,
	string lhsColumnName,
	string rhsColumnName
)
Visual Basic (Declaration)
Public Shared Function Outer ( _
	lhs As String, _
	rhs As String, _
	lhsColumnName As String, _
	rhsColumnName As String _
) As Join

Parameters

lhs
Type: System..::.String
The alias of the first selection to be joined.
rhs
Type: System..::.String
The alias of the second selection to be joined.
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.

Return Value

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

See Also