InheritanceHierarchiesGraphGetAllEntitiesOnPathToHierarchyRoot Method |
Gets all entities on the path from the subtype to the hierarchy root.
Namespace:
SD.LLBLGen.Pro.ApplicationCore.EntityModel
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax public List<EntityDefinition> GetAllEntitiesOnPathToHierarchyRoot(
EntityDefinition subType
)
Public Function GetAllEntitiesOnPathToHierarchyRoot (
subType As EntityDefinition
) As List(Of EntityDefinition)
Parameters
- subType
- Type: SD.LLBLGen.Pro.ApplicationCore.EntityModelEntityDefinition
The subtype which is the start of the path
Return Value
Type:
ListEntityDefinitionall entities on the path to the hierarchy root. Passed in entity not included. Empty list is returned if subType has no supertype (not in hierarchy
or is root
See Also