IRelationshipServiceGetJoinRelationship(IStructure, IStructure, IEnumerableString, IEnumerableString) Method |
Gets the relationship to be used for a join operation. If there are no relationships defined, it generates one.
Namespace: Dundas.BI.Data.RelationshipsAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
SyntaxRelationship? GetJoinRelationship(
IStructure firstStructure,
IStructure secondStructure,
IEnumerable<string>? firstStructureElements,
IEnumerable<string>? secondStructureElements
)
Function GetJoinRelationship (
firstStructure As IStructure,
secondStructure As IStructure,
firstStructureElements As IEnumerable(Of String),
secondStructureElements As IEnumerable(Of String)
) As Relationship
Relationship^ GetJoinRelationship(
IStructure^ firstStructure,
IStructure^ secondStructure,
IEnumerable<String^>^ firstStructureElements,
IEnumerable<String^>^ secondStructureElements
)
abstract GetJoinRelationship :
firstStructure : IStructure *
secondStructure : IStructure *
firstStructureElements : IEnumerable<string> *
secondStructureElements : IEnumerable<string> -> Relationship Parameters
- firstStructure IStructure
- The first structure.
- secondStructure IStructure
- The second structure.
- firstStructureElements IEnumerableString
- The selected elements from the first structure, to be used as relationship hints.
- secondStructureElements IEnumerableString
- The selected elements from the second structure, to be used as relationship hints.
Return Value
RelationshipThe relationship to be used in the join operation.
Exceptions
See Also