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