17 references to StorageMappingItemCollection
System.Data.Entity (17)
System\Data\Mapping\MetadataMappingHasherVisitor.cs (4)
45
Debug.Assert(m_MappingVersion == storageEntityContainerMapping.
StorageMappingItemCollection
.MappingVersion, "the original version and the mapping collection version are not the same");
46
this.m_MappingVersion = storageEntityContainerMapping.
StorageMappingItemCollection
.MappingVersion;
47
this.m_EdmVersion = storageEntityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection.EdmVersion;
49
this.m_EdmItemCollection = storageEntityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection;
System\Data\Mapping\StorageMappingItemCollection.cs (2)
804
entityContainerMapping.
StorageMappingItemCollection
,
822
entityContainerMapping.
StorageMappingItemCollection
,
System\Data\Mapping\ViewGeneration\CellCreator.cs (2)
294
IEnumerable<EdmType> typeAndSubTypes = MetadataHelper.GetTypeAndSubtypesOf(type, m_containerMapping.
StorageMappingItemCollection
.EdmItemCollection, false /*includeAbstractTypes*/);
417
allTypes.AddRange(MetadataHelper.GetTypeAndSubtypesOf(type, m_containerMapping.
StorageMappingItemCollection
.EdmItemCollection, false /*includeAbstractTypes*/));
System\Data\Mapping\ViewGeneration\ViewgenContext.cs (1)
70
m_edmItemCollection = entityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection;
System\Data\Mapping\ViewGeneration\ViewGenerator.cs (6)
63
Dictionary<EntityType, Set<EntityType>> inheritanceGraph = MetadataHelper.BuildUndirectedGraphOfTypes(entityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection);
67
m_queryDomainMap = new MemberDomainMap(ViewTarget.QueryView, m_config.IsValidationEnabled, cellGroup, entityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection, m_config, inheritanceGraph);
68
m_updateDomainMap = new MemberDomainMap(ViewTarget.UpdateView, m_config.IsValidationEnabled, cellGroup, entityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection, m_config, inheritanceGraph);
357
foreach (EdmType type in MetadataHelper.GetTypeAndSubtypesOf(extent.ElementType, m_entityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection, false /*includeAbstractTypes*/))
435
m_entityContainerMapping.
StorageMappingItemCollection
);
450
GeneratedView generatedView = GeneratedView.CreateGeneratedView(context.Extent, generatedType, commandTree, eSQLView, m_entityContainerMapping.
StorageMappingItemCollection
, m_config);
System\Data\Mapping\ViewValidator.cs (2)
58
private EdmItemCollection EdmItemCollection { get { return _setMapping.EntityContainerMapping.
StorageMappingItemCollection
.EdmItemCollection; } }
59
private StoreItemCollection StoreItemCollection { get { return _setMapping.EntityContainerMapping.
StorageMappingItemCollection
.StoreItemCollection; } }