EntityModelGraphGetEntitiesTopologicalSortedBasedOnInheritance Method |
Gets the entities in this graph topological sorted. This means that they're sorted based on the inheritance hierarchies they're in. All other entities
are not considered depending on other entities. This method is not sorting based on relationships, but solely on inheritance hierachies.
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 IEnumerable<EntityDefinition> GetEntitiesTopologicalSortedBasedOnInheritance()
Public Function GetEntitiesTopologicalSortedBasedOnInheritance As IEnumerable(Of EntityDefinition)
Return Value
Type:
IEnumerableEntityDefinitionenumerable over all entities in this entity model, where each super type is returned before all its subtypes
See Also