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