2 types derived from StorageSetMapping
System.Data.Entity (2)
System\Data\Mapping\StorageAssociationSetMapping.cs (1)
36internal class StorageAssociationSetMapping : StorageSetMapping {
System\Data\Mapping\StorageEntitySetMapping.cs (1)
36internal class StorageEntitySetMapping : StorageSetMapping {
47 references to StorageSetMapping
System.Data.Entity (47)
System\Data\Mapping\BaseMetadataMappingVisitor.cs (2)
33foreach (var mapping in storageEntityContainerMapping.EntitySetMaps) 58protected virtual void Visit(StorageSetMapping storageSetMapping)
System\Data\Mapping\MetadataMappingHasherVisitor.cs (1)
104protected override void Visit(StorageSetMapping storageSetMapping)
System\Data\Mapping\StorageAssociationTypeMapping.cs (1)
57internal StorageAssociationTypeMapping(AssociationType relation, StorageSetMapping setMapping)
System\Data\Mapping\StorageEntityContainerMapping.cs (22)
72private Dictionary<string, StorageSetMapping> m_entitySetMappings = new Dictionary<string, StorageSetMapping>(StringComparer.Ordinal); //A collection of EntitySetMappings under this EntityContainer mapping 73private Dictionary<string, StorageSetMapping> m_associationSetMappings = new Dictionary<string, StorageSetMapping>(StringComparer.Ordinal); //A collection of AssociationSetMappings under this EntityContainer mapping 137|| AllSetMaps.Any((StorageSetMapping setMap) => setMap.QueryView != null); 172internal ReadOnlyCollection<StorageSetMapping> EntitySetMaps { 174return new List<StorageSetMapping>(this.m_entitySetMappings.Values).AsReadOnly(); 189internal ReadOnlyCollection<StorageSetMapping> RelationshipSetMaps { 191return new List<StorageSetMapping>(this.m_associationSetMappings.Values).AsReadOnly(); 199internal IEnumerable<StorageSetMapping> AllSetMaps 265internal StorageSetMapping GetEntitySetMapping(String entitySetName) { 268StorageSetMapping setMapping = null; 278internal StorageSetMapping GetRelationshipSetMapping(string relationshipSetName) { 280StorageSetMapping setMapping = null; 304internal StorageSetMapping GetSetMapping(string setName) 306StorageSetMapping setMap = GetEntitySetMapping(setName); 320internal void AddEntitySetMapping(StorageSetMapping setMapping) { 330internal void AddAssociationSetMapping(StorageSetMapping setMapping) { 351StorageSetMapping set = GetSetMapping(setName); 361foreach (var extentMap in this.AllSetMaps) 410foreach (StorageSetMapping extentMapping in m_entitySetMappings.Values) { 413foreach (StorageSetMapping extentMapping in m_associationSetMappings.Values) {
System\Data\Mapping\StorageEntityTypeMapping.cs (1)
62internal StorageEntityTypeMapping(StorageSetMapping setMapping)
System\Data\Mapping\StorageMappingItemCollection.cs (1)
792foreach (StorageSetMapping setMapping in entityContainerMapping.AllSetMaps)
System\Data\Mapping\StorageMappingItemLoader.cs (5)
629KeyToListMap<EntitySet, StorageSetMapping> setMappingPerTable = 630new KeyToListMap<EntitySet, StorageSetMapping>(EqualityComparer<EntitySet>.Default); 633foreach (var setMapping in entityContainerMapping.AllSetMaps) 757foreach (StorageSetMapping setMapping in entityContainerMapping.AllSetMaps) 1251private bool LoadQueryView(XPathNavigator nav, StorageSetMapping setMapping)
System\Data\Mapping\StorageTypeMapping.cs (3)
56internal StorageTypeMapping(StorageSetMapping setMapping) { 66StorageSetMapping m_setMapping; 85internal StorageSetMapping SetMapping
System\Data\Mapping\Update\Internal\ViewLoader.cs (2)
182StorageSetMapping setMapping; 389private static IEnumerable<StorageMappingFragment> GetMappingFragments(StorageSetMapping setMapping)
System\Data\Mapping\ViewGeneration\CellCreator.cs (1)
271foreach (StorageSetMapping extentMap in m_containerMapping.AllSetMaps)
System\Data\Mapping\ViewGeneration\GeneratedView.cs (1)
81internal static bool TryParseUserSpecifiedView(StorageSetMapping setMapping,
System\Data\Mapping\ViewValidator.cs (5)
32internal static IEnumerable<EdmSchemaError> ValidateQueryView(DbQueryCommandTree view, StorageSetMapping setMapping, EntityTypeBase elementType, bool includeSubtypes) 53private readonly StorageSetMapping _setMapping; 61internal ViewExpressionValidator(StorageSetMapping setMapping, EntityTypeBase elementType, bool includeSubtypes) 265private StorageSetMapping _setMapping; 268internal AssociationSetViewValidator(StorageSetMapping setMapping)
System\Data\Metadata\MappingMetadataHelper.cs (2)
28StorageSetMapping extentMap = containerMapping.GetSetMapping(entitySet.Name); 73StorageSetMapping extentMap = containerMapping.GetSetMapping(entitySet.Name);