Click or drag to resize
ValueTypeDefinitionListGetTransitiveClosureOfDependencyGraph Method
Gets the transitive closure of the dependency graph built from the valuetypes in this list. If Valuetype V1 contains a reference to valuetype V2, a directed edge is added from V1 to V2. Then the transitive closure is calculated of that graph, which is returned. This transitive closure can be used to quickly see whether a value type reaches directly or indirectly another valuetype.

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 DirectedGraph<ValueTypeDefinition, DirectedEdge<ValueTypeDefinition>> GetTransitiveClosureOfDependencyGraph()

Return Value

Type: DirectedGraphValueTypeDefinition, DirectedEdgeValueTypeDefinition
the transitive closure directed graph of a dependency graph built from the valuetypes in this list.
See Also