3 instantiations of QualifiedSlot
System.Data.Entity (3)
System\Data\Mapping\ViewGeneration\CqlGeneration\AliasedSlot.cs (1)
52
QualifiedSlot result = new
QualifiedSlot
(block, m_slot);
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (1)
120
return new
QualifiedSlot
(this, slotInfo.SlotValue);
System\Data\Mapping\ViewGeneration\Structures\ProjectedSlot.cs (1)
68
QualifiedSlot result = new
QualifiedSlot
(block, this);
23 references to QualifiedSlot
System.Data.Entity (23)
System\Data\Mapping\ViewGeneration\CqlGeneration\AliasedSlot.cs (4)
52
QualifiedSlot
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.
74
QualifiedSlot
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:
116
internal
QualifiedSlot
QualifySlotWithBlockAlias(int slotNum)
172
if (!isTopLevel && (!(slotInfo.SlotValue is
QualifiedSlot
) || slotInfo.IsEnforcedNotNull))
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (6)
166
internal void Add(
QualifiedSlot
leftSlot, MemberPath leftSlotOutputMember,
QualifiedSlot
rightSlot, MemberPath rightSlotOutputMember)
216
internal SingleClause(
QualifiedSlot
leftSlot, MemberPath leftSlotOutputMember,
QualifiedSlot
rightSlot, MemberPath rightSlotOutputMember)
225
private readonly
QualifiedSlot
m_leftSlot;
227
private readonly
QualifiedSlot
m_rightSlot;
System\Data\Mapping\ViewGeneration\CqlGeneration\SlotInfo.cs (1)
50
Debug.Assert(m_slotValue is
QualifiedSlot
||
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (1)
317
QualifiedSlot
childAddedSlot = childBlock.QualifySlotWithBlockAlias(i);
System\Data\Mapping\ViewGeneration\Structures\CaseStatement.cs (2)
292
Debug.Assert(slot is MemberProjectedSlot || slot is
QualifiedSlot
|| slot is ConstantProjectedSlot,
320
Debug.Assert(slot is MemberProjectedSlot || slot is
QualifiedSlot
|| slot is ConstantProjectedSlot,
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (5)
345
List<Tuple<
QualifiedSlot
, MemberPath>> additionalChildSlots = new List<Tuple<
QualifiedSlot
,MemberPath>>();
404
var
firstSlot = children[0].QualifySlotWithBlockAlias(keySlotNum);
405
var
secondSlot = child.QualifySlotWithBlockAlias(keySlotNum);
587
QualifiedSlot
slot = child.QualifySlotWithBlockAlias(slotNum);
System\Data\Mapping\ViewGeneration\Structures\ProjectedSlot.cs (1)
68
QualifiedSlot
result = new QualifiedSlot(block, this);