9 references to SimpleCollectionColumnMap
System.Data.Entity (9)
System\Data\EntityClient\EntityCommandDefinition.cs (1)
200SimpleCollectionColumnMap collectionColumnMap = new SimpleCollectionColumnMap(storeResultType,
System\Data\Query\InternalTrees\ColumnMapCopier.cs (1)
287return new SimpleCollectionColumnMap(columnMap.Type, columnMap.Name, newElementColumnMap, newKeys, newForeignKeys);
System\Data\Query\InternalTrees\ColumnMapFactory.cs (3)
74CollectionColumnMap collection = new SimpleCollectionColumnMap(baseStructuralType.GetCollectionType().TypeUsage, baseStructuralType.Name, polymorphicMap, null, null); 119CollectionColumnMap collection = new SimpleCollectionColumnMap(edmType.GetCollectionType().TypeUsage, edmType.Name, elementColumnMap, null, null); 200CollectionColumnMap collectionMap = new SimpleCollectionColumnMap(rowType.GetCollectionType().TypeUsage,
System\Data\Query\InternalTrees\Command.cs (1)
1452SimpleCollectionColumnMap collectionColumnMap = new SimpleCollectionColumnMap(
System\Data\Query\PlanCompiler\ColumnMapTranslator.cs (1)
444columnMap = new SimpleCollectionColumnMap(columnMap.Type, columnMap.Name, newElement, columnMap.Keys, columnMap.ForeignKeys);
System\Data\Query\PlanCompiler\NestPullup.cs (1)
1972newProjectColumnMap = new SimpleCollectionColumnMap(newProjectColumnMap.Type, newProjectColumnMap.Name, newProjectColumnMap.Element, keyColumnMaps, null);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
983SimpleCollectionColumnMap resultColumnMap = new SimpleCollectionColumnMap(TypeUtils.CreateCollectionType(newColumnMap.Type), newColumnMap.Name, newColumnMap, columnMap.Keys, columnMap.ForeignKeys);