13 references to SlotInfo
System.Data.Entity (13)
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (2)
312SlotInfo slotInfo = new SlotInfo(isRequiredByParent && isProjected, isProjected, slot, outputMember); 318slotInfos[i] = new SlotInfo(true, true, childAddedSlot, childBlock.MemberPath(i));
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (3)
153SlotInfo slotInfo = new SlotInfo(requiredSlots[i], slot != null, 172SlotInfo slotInfo = new SlotInfo(requiredSlots[slotIndex], expr != null, 241foreignKeySlots.Add(new SlotInfo(true, true, sSlot, endMemberKeyPath));
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (8)
248paddedSlotInfo[slotNum] = new SlotInfo(true /* is required */, true /* is projected */, 255paddedSlotInfo[slotNum] = new SlotInfo(true /* is required */, true /* is projected */, 283childSlots[index] = new SlotInfo(true /* is required */, true /* is projected */, slotInfo.SlotValue, slotInfo.OutputMember); 287childSlots[index] = new SlotInfo(true /* is required */, true /* is projected */, 310slotInfos[slotNum] = new SlotInfo(isRequired, isRequired, slotInfo.SlotValue, slotInfo.OutputMember); 316slotInfos[slotNum] = new SlotInfo(true, true, aslot.SlotValue, aslot.OutputMember); 376slotInfos[slotNum] = new SlotInfo(true, true, additionalChildSlots[i].Item1, additionalChildSlots[i].Item2); 426SlotInfo unrequiredSlotInfo = new SlotInfo(false, false, null, GetMemberPath(slotNum));