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.4.0.0 (5.4.0)
Syntaxpublic DirectedGraph<ValueTypeDefinition, DirectedEdge<ValueTypeDefinition>> GetTransitiveClosureOfDependencyGraph()
Public Function GetTransitiveClosureOfDependencyGraph As DirectedGraph(Of ValueTypeDefinition, DirectedEdge(Of ValueTypeDefinition))
Return Value
Type: 
DirectedGraphValueTypeDefinition, 
DirectedEdgeValueTypeDefinitionthe transitive closure directed graph of a dependency graph built from the valuetypes in this list.
See Also