3 instantiations of QualifiedSlot
System.Data.Entity (3)
System\Data\Mapping\ViewGeneration\CqlGeneration\AliasedSlot.cs (1)
52QualifiedSlot result = new QualifiedSlot(block, m_slot);
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (1)
120return new QualifiedSlot(this, slotInfo.SlotValue);
System\Data\Mapping\ViewGeneration\Structures\ProjectedSlot.cs (1)
68QualifiedSlot result = new QualifiedSlot(block, this);
23 references to QualifiedSlot
System.Data.Entity (23)
System\Data\Mapping\ViewGeneration\CqlGeneration\AliasedSlot.cs (4)
52QualifiedSlot result = new QualifiedSlot(block, m_slot); 67/// Walks the chain of <see cref="QualifiedSlot"/>s starting from the current one and returns the original slot. 74QualifiedSlot qualifiedSlot = slot as QualifiedSlot;
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (3)
113/// For the given <paramref name="slotNum"/> creates a <see cref="QualifiedSlot"/> qualified with <see cref="CqlAlias"/> of the current block: 116internal QualifiedSlot QualifySlotWithBlockAlias(int slotNum) 172if (!isTopLevel && (!(slotInfo.SlotValue is QualifiedSlot) || slotInfo.IsEnforcedNotNull))
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (6)
166internal void Add(QualifiedSlot leftSlot, MemberPath leftSlotOutputMember, QualifiedSlot rightSlot, MemberPath rightSlotOutputMember) 216internal SingleClause(QualifiedSlot leftSlot, MemberPath leftSlotOutputMember, QualifiedSlot rightSlot, MemberPath rightSlotOutputMember) 225private readonly QualifiedSlot m_leftSlot; 227private readonly QualifiedSlot m_rightSlot;
System\Data\Mapping\ViewGeneration\CqlGeneration\SlotInfo.cs (1)
50Debug.Assert(m_slotValue is QualifiedSlot ||
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (1)
317QualifiedSlot childAddedSlot = childBlock.QualifySlotWithBlockAlias(i);
System\Data\Mapping\ViewGeneration\Structures\CaseStatement.cs (2)
292Debug.Assert(slot is MemberProjectedSlot || slot is QualifiedSlot || slot is ConstantProjectedSlot, 320Debug.Assert(slot is MemberProjectedSlot || slot is QualifiedSlot || slot is ConstantProjectedSlot,
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (5)
345List<Tuple<QualifiedSlot, MemberPath>> additionalChildSlots = new List<Tuple<QualifiedSlot,MemberPath>>(); 404var firstSlot = children[0].QualifySlotWithBlockAlias(keySlotNum); 405var secondSlot = child.QualifySlotWithBlockAlias(keySlotNum); 587QualifiedSlot slot = child.QualifySlotWithBlockAlias(slotNum);
System\Data\Mapping\ViewGeneration\Structures\ProjectedSlot.cs (1)
68QualifiedSlot result = new QualifiedSlot(block, this);