26 references to Extent
System.Data.Entity (26)
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (2)
397AssociationSet associationSet = (AssociationSet)caseMemberPath.Extent; 414EntitySet entitySet = MetadataHelper.GetEntitySetAtEnd((AssociationSet)caseMemberPath.Extent,
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (2)
121GenerateCaseStatements(_domainMap.ConditionMembers(_extentPath.Extent), _usedViews); 243List<MemberPath> members = new List<MemberPath>(_domainMap.ConditionMembers(_extentPath.Extent));
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (2)
128EntitySetBase extent = m_extentMemberPath.Extent as EntitySetBase; 907EntitySetBase extent = m_extentMemberPath.Extent;
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (1)
203string message = Strings.ViewGen_No_Default_Value(memberPath.Extent.Name, memberPath.PathToString(false));
System\Data\Mapping\ViewGeneration\Structures\MemberDomainMap.cs (2)
319if (path.Extent.Equals(extent)) 331if (path.Extent.Equals(extent))
System\Data\Mapping\ViewGeneration\Structures\MemberPath.cs (13)
94/// For non-empty paths returns name of the last path item, otherwise returns name of <see cref="Extent"/>. 180/// If path corresponds to an entity set (empty path) or an association end (<see cref="Extent"/> is as association set, and path length is 1), 558extentPath.GetMembers(extentPath.Extent.ElementType, null /* isScalar */, null /* isConditional */, true /* isPartOfKey */, domainMap)); 628AssociationSet assocSet0 = path0.Extent as AssociationSet; 629AssociationSet assocSet1 = path1.Extent as AssociationSet; 630EntitySet entitySet0 = path0.Extent as EntitySet; 631EntitySet entitySet1 = path1.Extent as EntitySet; 671MemberPath assocEndPathA = path0.Extent is AssociationSet ? path0 : path1; 672MemberPath entityPath = path0.Extent is EntitySet ? path0 : path1; 699Debug.Assert(assocPath0.Extent.Equals(assocSet) && assocPath1.Extent.Equals(assocSet), 748/// Note: the path need not correspond to a key field of an entity set <see cref="Extent"/>. 752Debug.Assert(this.Extent is EntitySet, "path must be in the context of an entity set");
System\Data\Mapping\ViewGeneration\Validation\ViewKeyConstraint.cs (4)
105EntitySetBase table = keySlots[0].SSlot.MemberPath.Extent; 106EntitySetBase cSet = keySlots[0].CSlot.MemberPath.Extent; 155EntitySetBase table = keySlots[0].SSlot.MemberPath.Extent; 156EntitySetBase cSet = keySlots[0].CSlot.MemberPath.Extent;