Click or drag to resize

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.6.0.0 (5.6.19.0117)
Syntax
public IEnumerable<EntityDefinition> GetEntitiesTopologicalSortedBasedOnInheritance()

Return Value

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