3 writes to MappedEntityTypes
System.Data.Entity (3)
System\Data\Mapping\FunctionImportMapping.cs (3)
63this.MappedEntityTypes = new OM.ReadOnlyCollection<EntityType>(new List<EntityType>()); 77this.MappedEntityTypes = entityTypeMappings 193this.MappedEntityTypes = new OM.ReadOnlyCollection<EntityType>(new List<EntityType>() { });
18 references to MappedEntityTypes
System.Data.Entity (18)
System\Data\Mapping\FunctionImportMapping.cs (9)
128bool[] impliedEntityTypesBitMap = new bool[this.MappedEntityTypes.Count]; 130for (int i = 0; i < this.MappedEntityTypes.Count; i++) 132impliedEntityTypesBitMap[i] = impliedEntityTypesSet.Contains(this.MappedEntityTypes[i]); 377Vertex[] candidateFunctions = new Vertex[this.MappedEntityTypes.Count]; 413reachableTypes.Add(this.MappedEntityTypes[i]); 427Vertex[] candidateFunctions = new Vertex[this.MappedEntityTypes.Count]; 472reachableTypes.Add(this.MappedEntityTypes[i]); 485if (reachableTypes.Count == this.MappedEntityTypes.Count) 527Debug.Assert(impliedEntityTypes.Count == parent.MappedEntityTypes.Count,
System\Data\Mapping\FunctionImportMappingNonComposable.cs (3)
106BitArray typeCandidates = new BitArray(resultMapping.MappedEntityTypes.Count, true); 147entityType = resultMapping.MappedEntityTypes[i]; 192structuralTypes = resultMapping.MappedEntityTypes.Cast<StructuralType>();
System\Data\Mapping\StorageMappingItemLoader.cs (5)
2128if (functionImportKB.MappedEntityTypes.Count > 0) 2137for (int i = 0; i < functionImportKB.MappedEntityTypes.Count; ++i) 2149structuralTypeMappings.Add(Tuple.Create((StructuralType)functionImportKB.MappedEntityTypes[i], typeConditions, propertyMappings)); 2152if (structuralTypeMappings.Count < functionImportKB.MappedEntityTypes.Count) 2361var entityType = functionImportKB.MappedEntityTypes[typeID];
System\Data\Query\InternalTrees\ColumnMapFactory.cs (1)
53var mappedEntityTypes = new HashSet<EntityType>(resultMapping.MappedEntityTypes);