10 references to OutputMember
System.Data.Entity (10)
System\Data\Mapping\ViewGeneration\CqlGeneration\CaseCqlBlock.cs (3)
51Debug.Assert(m_caseSlotInfo.OutputMember != null, "We only construct member slots, not boolean slots."); 52builder.Append("-- Constructing ").Append(m_caseSlotInfo.OutputMember.LeafName); 78Debug.Assert(m_caseSlotInfo.OutputMember != null, "We only construct real slots not boolean slots");
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (1)
132return m_slots[slotNum].OutputMember;
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (6)
283childSlots[index] = new SlotInfo(true /* is required */, true /* is projected */, slotInfo.SlotValue, slotInfo.OutputMember); 288new ConstantProjectedSlot(Constant.Null, slotInfo.OutputMember), slotInfo.OutputMember); 310slotInfos[slotNum] = new SlotInfo(isRequired, isRequired, slotInfo.SlotValue, slotInfo.OutputMember); 316slotInfos[slotNum] = new SlotInfo(true, true, aslot.SlotValue, aslot.OutputMember); 406var outputMember = slotInfos[keySlotNum].OutputMember;