Click or drag to resize
EntityModelGraph.GetEntitiesTopologicalSortedBasedOnInheritance 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.3.0.0 (5.3.0)
Syntax
public IEnumerable<EntityDefinition> GetEntitiesTopologicalSortedBasedOnInheritance()

Return Value

Type: IEnumerable<EntityDefinition>
enumerable over all entities in this entity model, where each super type is returned before all its subtypes
See Also