2 instantiations of StorageMappingFragment
System.Data.Entity (2)
System\Data\Mapping\StorageMappingItemLoader.cs (2)
2661StorageMappingFragment fragment = new StorageMappingFragment(tableMember, typeMapping, distinctFlag); 2756fragment = new StorageMappingFragment(tableMember, typeMapping, false /*No distinct flag*/);
31 references to StorageMappingFragment
System.Data.Entity (31)
System\Data\Mapping\BaseMetadataMappingVisitor.cs (2)
345foreach (var fragment in storageTypeMapping.MappingFragments) 357protected virtual void Visit(StorageMappingFragment storageMappingFragment)
System\Data\Mapping\MetadataMappingHasherVisitor.cs (1)
140protected override void Visit(StorageMappingFragment storageMappingFragment)
System\Data\Mapping\StorageAssociationTypeMapping.cs (1)
120foreach (StorageMappingFragment fragment in MappingFragments) {
System\Data\Mapping\StorageEntityTypeMapping.cs (1)
155foreach (StorageMappingFragment fragment in MappingFragments) {
System\Data\Mapping\StorageMappingItemLoader.cs (8)
637foreach (var fragment in typeMapping.MappingFragments) 1091StorageMappingFragment fragment = LoadMappingFragment(nav.Clone(), entityTypeMapping, tableName, storageEntityContainerType, distinctFlag); 1117StorageMappingFragment fragment = LoadMappingFragment(nav.Clone(), entityTypeMapping, tableName, 2581StorageMappingFragment fragment = LoadAssociationMappingFragment(nav.Clone(), associationSetMapping, associationTypeMapping, tableName, storageEntityContainerType); 2632private StorageMappingFragment LoadMappingFragment( 2661StorageMappingFragment fragment = new StorageMappingFragment(tableMember, typeMapping, distinctFlag); 2735private StorageMappingFragment LoadAssociationMappingFragment(XPathNavigator nav, StorageAssociationSetMapping setMapping, StorageAssociationTypeMapping typeMapping, string tableName, EntityContainer storageEntityContainerType) 2738StorageMappingFragment fragment = null;
System\Data\Mapping\StorageSetMapping.cs (1)
142foreach (StorageMappingFragment mapFragment in typeMap.MappingFragments)
System\Data\Mapping\StorageTypeMapping.cs (4)
57this.m_fragments = new List<StorageMappingFragment>(); 70List<StorageMappingFragment> m_fragments; 77internal ReadOnlyCollection<StorageMappingFragment> MappingFragments 111internal void AddFragment(StorageMappingFragment fragment)
System\Data\Mapping\Update\Internal\ViewLoader.cs (7)
202foreach (StorageMappingFragment mappingFragment in GetMappingFragments(setMapping)) 216foreach (StorageMappingFragment mappingFragment in GetMappingFragments(setMapping)) 343private static IEnumerable<EdmMember> FindServerGenMembers(StorageMappingFragment mappingFragment) 358private static IEnumerable<EdmMember> FindIsNullConditionColumns(StorageMappingFragment mappingFragment) 374private static IEnumerable<EdmMember> FindPropertiesMappedToColumns(Set<EdmMember> columns, StorageMappingFragment mappingFragment) 389private static IEnumerable<StorageMappingFragment> GetMappingFragments(StorageSetMapping setMapping) 395foreach (StorageMappingFragment mappingFragment in typeMapping.MappingFragments)
System\Data\Mapping\ViewGeneration\CellCreator.cs (4)
304foreach (StorageMappingFragment fragmentMap in typeMap.MappingFragments) 318private void ExtractCellsFromTableFragment(EntitySetBase extent, StorageMappingFragment fragmentMap, 348StorageMappingFragment fragmentInfo = fragmentMap as StorageMappingFragment;
System\Data\Mapping\ViewGeneration\Structures\CellLabel.cs (1)
33internal CellLabel(StorageMappingFragment fragmentInfo) :
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
260StorageMappingFragment mapFragment = colocatedAssociationSetMap.TypeMappings.First().MappingFragments.First();