Specifies an inner join between two entity types.
Namespace:
Mindscape.LightSpeed.QueryingAssembly: Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)
Syntax
C# |
---|
public static Join Inner<TLhs, TRhs>( string lhsColumnName, string rhsColumnName ) where TLhs : Entity where TRhs : Entity |
Visual Basic (Declaration) |
---|
Public Shared Function Inner(Of TLhs As Entity, TRhs As Entity) ( _ lhsColumnName As String, _ rhsColumnName As String _ ) As Join |
Parameters
- lhsColumnName
- Type: System..::.String
The attribute in the first entity type on which to join.
- rhsColumnName
- Type: System..::.String
The attribute in the second entity type on which to join.
Type Parameters
- TLhs
- The first entity type to be joined.
- TRhs
- The second entity type to be joined.