6 references to IsRequiredByParent
System.Data.Entity (6)
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (5)
152if (false == slotInfo.IsRequiredByParent) 187/// If <paramref name="isTopLevel"/>=true then generates "A" for the only slot that is marked as <see cref="SlotInfo.IsRequiredByParent"/>. 193Debug.Assert(this.Slots.Where(slot => slot.IsRequiredByParent).Count() == 1, "Top level projection must project only one slot."); 194return this.Slots.Where(slot => slot.IsRequiredByParent).Single().AsCqt(row); 199this.Slots.Where(slot => slot.IsRequiredByParent).Select(slot => new KeyValuePair<string, DbExpression>(slot.CqlFieldAlias, slot.AsCqt(row))));
System\Data\Mapping\ViewGeneration\CqlGeneration\SlotInfo.cs (1)
136/// Sets the <see cref="IsRequiredByParent"/> to false.