Home
last modified time | relevance | path

Searched refs:nestedExtents (Results 1 – 1 of 1) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Mapping/ViewGeneration/
H A DBasicViewGenerator.cs401 … var nestedExtents = new Dictionary<EntitySet, EntitySet>(EqualityComparer<EntitySet>.Default); in ConvertUnionsToNormalizedLOJs()
410 … !nestedExtents.ContainsKey(fkExtent) && !CheckLOJCycle(fkExtent, principalExtent, nestedExtents)) in ConvertUnionsToNormalizedLOJs()
413 nestedExtents.Add(fkExtent, principalExtent); in ConvertUnionsToNormalizedLOJs()
423 if (!nestedExtents.ContainsKey(m.Key)) in ConvertUnionsToNormalizedLOJs()
467 …ol CheckLOJCycle(EntitySet child, EntitySet parent, Dictionary<EntitySet, EntitySet> nestedExtents) in CheckLOJCycle() argument
476 while (nestedExtents.TryGetValue(parent, out parent)); in CheckLOJCycle()