Click or drag to resize

ObjectGraphUtilsPerformTopologySort Method (Type, MultiValueDictionaryType, Type, HashSetType, ListType)

Performs the topology sort for the adjacencylists and the type given. Adds the type to the list passed in which represents the right ordered queue.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
public void PerformTopologySort(
	Type toSort,
	MultiValueDictionary<Type, Type> adjacencyLists,
	HashSet<Type> visited,
	List<Type> orderedList
)

Parameters

toSort
Type: SystemType
To sort.
adjacencyLists
Type: SD.LLBLGen.Pro.ORMSupportClassesMultiValueDictionaryType, Type
Adjacency lists.
visited
Type: System.Collections.GenericHashSetType
Visited.
orderedList
Type: System.Collections.GenericListType
The ordered list.
See Also