6 references to IsRequiredByParent
System.Data.Entity (6)
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (5)
152
if (false == slotInfo.
IsRequiredByParent
)
187
/// If <paramref name="isTopLevel"/>=true then generates "A" for the only slot that is marked as <see cref="SlotInfo.
IsRequiredByParent
"/>.
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\CqlGeneration\SlotInfo.cs (1)
136
/// Sets the <see cref="
IsRequiredByParent
"/> to false.