InheritanceHierarchiesGraphGetAllSubtypesInSubHierarchyForEntity Method  | 
 
            Gets all sub types in sub hierarchy for entity. A sub-hierarchy is a hierarchy inside a full inheritance hierarchy which share the same inheritance type
            and all vertices are directly connected.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.EntityModel
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntaxpublic IEnumerable<EntityDefinition> GetAllSubtypesInSubHierarchyForEntity(
	EntityDefinition entity
)
Public Function GetAllSubtypesInSubHierarchyForEntity ( 
	entity As EntityDefinition
) As IEnumerable(Of EntityDefinition)
Parameters
- entity
 - Type: SD.LLBLGen.Pro.ApplicationCore.EntityModelEntityDefinition
The entity. 
Return Value
Type: 
IEnumerableEntityDefinitionEnumerable over entities which are subtypes (direct or indirect) of the passed in entity which are also in the same sub-hierarchy
See Also