2 writes to Slots
System.Data.Entity (2)
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (2)
264
childBlock.
Slots
= new ReadOnlyCollection<SlotInfo>(paddedSlotInfo);
294
childBlock.
Slots
= new ReadOnlyCollection<SlotInfo>(childSlots);
13 references to Slots
System.Data.Entity (13)
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (4)
150
foreach (SlotInfo slotInfo in
Slots
)
193
Debug.Assert(this.
Slots
.Where(slot => slot.IsRequiredByParent).Count() == 1, "Top level projection must project only one slot.");
194
return this.
Slots
.Where(slot => slot.IsRequiredByParent).Single().AsCqt(row);
199
this.
Slots
.Where(slot => slot.IsRequiredByParent).Select(slot => new KeyValuePair<string, DbExpression>(slot.CqlFieldAlias, slot.AsCqt(row))));
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (1)
276
int numSlotsAddedByChildBlock = childBlock.
Slots
.Count - TotalSlots;
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (8)
235
for (int qualifiedSlotNumber = childProjectedSlots.Length; qualifiedSlotNumber < childBlock.
Slots
.Count; qualifiedSlotNumber++)
237
additionalChildSlots.Add(Tuple.Create(childBlock, childBlock.
Slots
[qualifiedSlotNumber]));
241
SlotInfo[] paddedSlotInfo = new SlotInfo[childBlock.
Slots
.Count];
261
paddedSlotInfo[slotNum] = childBlock.
Slots
[slotNum];
276
childBlock.
Slots
.CopyTo(childSlots, 0);
307
SlotInfo slotInfo = firstChild.
Slots
[slotNum];
315
var aslot = firstChild.
Slots
[slotNum];
356
for (int qualifiedSlotNumber = childProjectedSlots.Length; qualifiedSlotNumber < childBlock.
Slots
.Count; qualifiedSlotNumber++)