Specifies a cross join between an entity type and a sub query

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,
	Query rhs
)
Visual Basic (Declaration)
Public Shared Function CrossJoin ( _
	lhs As Type, _
	rhs As Query _
) As Join

Parameters

lhs
Type: System..::.Type
The first entity type to be joined.
rhs
Type: Mindscape.LightSpeed.Querying..::.Query
The sub query to be joined.

Return Value

A Join representing a cross join between the specified entity and subquery

See Also