Specifies a cross 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 CrossJoin(
	Type lhs,
	Type rhs
)
Visual Basic (Declaration)
Public Shared Function CrossJoin ( _
	lhs As Type, _
	rhs As Type _
) 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.

Return Value

A Join representing a cross join between the specified entities.

See Also