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<TLhs, TRhs>() where TLhs : Entity where TRhs : Entity
Visual Basic (Declaration)
Public Shared Function CrossJoin(Of TLhs As Entity, TRhs As Entity) As 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 cross join between the specified entities.

See Also