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