19 references to Element
System.Data.Entity (19)
System\Data\Common\Internal\Materialization\ColumnMapKeyBuilder.cs (2)
215Append(",E", columnMap.Element); 267Append(",E", columnMap.Element);
System\Data\Common\Internal\Materialization\Translator.cs (4)
1813ColumnMap elementColumnMap = columnMap.Element; 1825ColumnMap[] columnMaps = new ColumnMap[1] { columnMap.Element }; 1826elementColumnMap = new RecordColumnMap(columnMap.Element.Type, columnMap.Element.Name, columnMaps, null);
System\Data\Query\InternalTrees\ColumnMap.cs (1)
877string str = String.Format(CultureInfo.InvariantCulture, "M{{{0}}}", this.Element.ToString());
System\Data\Query\InternalTrees\ColumnMapCopier.cs (2)
185ColumnMap newElementColumnMap = columnMap.Element.Accept(this, replacementVarMap); 284ColumnMap newElementColumnMap = columnMap.Element.Accept(this, replacementVarMap);
System\Data\Query\InternalTrees\ColumnMapVisitor.cs (2)
112columnMap.Element.Accept(this, arg); 185columnMap.Element.Accept(this, arg);
System\Data\Query\InternalTrees\Dump.cs (1)
612columnMap.Element.Accept(this, dumper);
System\Data\Query\PlanCompiler\ColumnMapTranslator.cs (4)
306ColumnMap newElement = columnMap.Element.Accept(this, translationDelegate); 308if (newDiscriminator != columnMap.Discriminator || newElement != columnMap.Element) 440ColumnMap newElement = columnMap.Element.Accept(this, translationDelegate); 442if (newElement != columnMap.Element)
System\Data\Query\PlanCompiler\NestPullup.cs (2)
1276CollectionInfo collectionInfo = Command.CreateCollectionInfo(collectionVar, physicalProjectOp.ColumnMap.Element, flattenedElementVarList, keys, sortKeys, null/*discriminatorValue*/); 1972newProjectColumnMap = new SimpleCollectionColumnMap(newProjectColumnMap.Type, newProjectColumnMap.Name, newProjectColumnMap.Element, keyColumnMaps, null);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
957VarRefColumnMap varRefColumnMap = columnMap.Element as VarRefColumnMap;