16 references to Keys
System.Data.Entity (16)
System\Data\Common\Internal\Materialization\ColumnMapKeyBuilder.cs (2)
214
Append(",K", columnMap.
Keys
);
266
Append(",K", columnMap.
Keys
);
System\Data\Common\Internal\Materialization\Translator.cs (3)
1841
if (null != columnMap.
Keys
)
1843
keyReaders = new Expression[columnMap.
Keys
.Length];
1846
Expression keyReader = AcceptWithMappedType(this, columnMap.
Keys
[i], columnMap).Expression;
System\Data\Query\InternalTrees\ColumnMapCopier.cs (2)
187
SimpleColumnMap[] newKeys = VisitList(columnMap.
Keys
, replacementVarMap);
285
SimpleColumnMap[] newKeys = VisitList(columnMap.
Keys
, replacementVarMap);
System\Data\Query\InternalTrees\ColumnMapVisitor.cs (2)
108
foreach (SimpleColumnMap k in columnMap.
Keys
)
181
foreach (SimpleColumnMap k in columnMap.
Keys
)
System\Data\Query\InternalTrees\Dump.cs (2)
606
if (columnMap.
Keys
.Length > 0) {
608
VisitList(columnMap.
Keys
, dumper);
System\Data\Query\PlanCompiler\ColumnMapTranslator.cs (4)
305
VisitList(columnMap.
Keys
, translationDelegate);
310
columnMap = new DiscriminatedCollectionColumnMap(columnMap.Type, columnMap.Name, newElement, columnMap.
Keys
, columnMap.ForeignKeys,(SimpleColumnMap)newDiscriminator, columnMap.DiscriminatorValue);
439
VisitList(columnMap.
Keys
, translationDelegate);
444
columnMap = new SimpleCollectionColumnMap(columnMap.Type, columnMap.Name, newElement, columnMap.
Keys
, columnMap.ForeignKeys);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
983
SimpleCollectionColumnMap resultColumnMap = new SimpleCollectionColumnMap(TypeUtils.CreateCollectionType(newColumnMap.Type), newColumnMap.Name, newColumnMap, columnMap.
Keys
, columnMap.ForeignKeys);