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

Parameters

lhs
Type: System..::.Type
The first entity type to be joined.
rhs
Type: System..::.Type
The second entity type 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