2 instantiations of SpanPathInfo
System.Data.Entity (2)
System\Data\Objects\Internal\ObjectFullSpanRewriter.cs (2)
73SpanPathInfo spanRoot = new SpanPathInfo(entityType); 127nextChild = new SpanPathInfo(EntityTypeFromResultType(nextNavProp));
10 references to SpanPathInfo
System.Data.Entity (10)
System\Data\Objects\Internal\ObjectFullSpanRewriter.cs (10)
43internal Dictionary<NavigationProperty, SpanPathInfo> Children; 50private Stack<SpanPathInfo> _currentSpanPath = new Stack<SpanPathInfo>(); 73SpanPathInfo spanRoot = new SpanPathInfo(entityType); 95private void AddSpanPath(SpanPathInfo parentInfo, List<string> navPropNames) 100private void ConvertSpanPath(SpanPathInfo parentInfo, List<string> navPropNames, int pos) 116parentInfo.Children = new Dictionary<NavigationProperty, SpanPathInfo>(); 122SpanPathInfo nextChild = null; 209SpanPathInfo currentInfo = _currentSpanPath.Peek(); 218foreach (KeyValuePair<NavigationProperty, SpanPathInfo> nextInfo in currentInfo.Children)