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

Parameters

lhs
Type: System..::.Type
The entity type to be joined.
rhs
Type: Mindscape.LightSpeed.Querying..::.Query
The query to be joined.
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