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( Type lhs, Type rhs, string lhsColumnName, string rhsColumnName ) |
Visual Basic (Declaration) |
---|
Public Shared Function Inner ( _ lhs As Type, _ rhs As Type, _ lhsColumnName As String, _ rhsColumnName As String _ ) As Join |
Parameters
- lhs
- Type: System..::.Type
The first entity type to be joined.
- rhs
- Type: System..::.Type
The second entity type to be joined.
- 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.