1 instantiation of ViewCellSlot
System.Data.Entity (1)
System\Data\Mapping\ViewGeneration\Structures\Cell.cs (1)
197ViewCellSlot slot = new ViewCellSlot(i, cJoinSlot, sJoinSlot);
28 references to ViewCellSlot
System.Data.Entity (28)
System\Data\Mapping\ViewGeneration\Structures\Cell.cs (3)
179List<ViewCellSlot> projectedSlots = new List<ViewCellSlot>(); 197ViewCellSlot slot = new ViewCellSlot(i, cJoinSlot, sJoinSlot);
System\Data\Mapping\ViewGeneration\Validation\BasicKeyConstraint.cs (3)
38List<ViewCellSlot> viewSlots = new List<ViewCellSlot>(); 41ViewCellSlot viewCellSlot = viewCellRelation.LookupViewSlot(keySlot);
System\Data\Mapping\ViewGeneration\Validation\ViewCellRelation.cs (4)
32internal ViewCellRelation(Cell cell, List<ViewCellSlot> slots, int cellNumber) 46private List<ViewCellSlot> m_slots; // Slots projected from both cell queries 63internal ViewCellSlot LookupViewSlot(MemberProjectedSlot slot) 66foreach (ViewCellSlot viewSlot in m_slots)
System\Data\Mapping\ViewGeneration\Validation\ViewCellSlot.cs (5)
65ViewCellSlot rightSlot = right as ViewCellSlot; 86internal static string SlotsToUserString(IEnumerable<ViewCellSlot> slots, bool isFromCside) 90foreach (ViewCellSlot slot in slots) 102internal static string SlotToUserString(ViewCellSlot slot, bool isFromCside)
System\Data\Mapping\ViewGeneration\Validation\ViewKeyConstraint.cs (13)
21internal class ViewKeyConstraint : KeyConstraint<ViewCellRelation, ViewCellSlot> 27internal ViewKeyConstraint(ViewCellRelation relation, IEnumerable<ViewCellSlot> keySlots) : 61Set<ViewCellSlot> secondKeySlots = new Set<ViewCellSlot>(second.KeySlots); 63foreach (ViewCellSlot firstSlot in KeySlots) 67foreach (ViewCellSlot secondSlot in secondKeySlots) 104List<ViewCellSlot> keySlots = new List<ViewCellSlot>(rightKeyConstraint.KeySlots); 124ViewCellSlot.SlotsToUserString(rightKeyConstraint.KeySlots, false /*isFromCside*/), 127ViewCellSlot.SlotsToUserString(rightKeyConstraint.KeySlots, true /*isFromCside*/), 144string keyMsg = ViewCellSlot.SlotsToUserString(rightConstraint.KeySlots, true /*isFromCside*/); 154List<ViewCellSlot> keySlots = new List<ViewCellSlot>(rightKeyConstraint.KeySlots);