Specifies an inner join between an entity type and another 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 Inner(
	Type lhs,
	Type rhs,
	string lhsAlias,
	string rhsAlias,
	string lhsColumnName,
	string rhsColumnName
)
Visual Basic (Declaration)
Public Shared Function Inner ( _
	lhs As Type, _
	rhs As Type, _
	lhsAlias As String, _
	rhsAlias As String, _
	lhsColumnName As String, _
	rhsColumnName As String _
) As Join

Parameters

lhs
Type: System..::.Type
The entity type to be joined.
rhs
Type: System..::.Type
The query to be joined.
lhsAlias
Type: System..::.String
The alias for the left hand side type
rhsAlias
Type: System..::.String
The alias for the right hand side type
lhsColumnName
Type: System..::.String
The attribute in the entity type on which to join.
rhsColumnName
Type: System..::.String
The attribute in the query on which to join.

Return Value

A Join representing an inner join between the specified entity and query on the specified columns.

See Also