1 implementation of CurrentValues
System.Data.Entity (1)
System\Data\Objects\ObjectStateEntry.cs (1)
135abstract public CurrentValueRecord CurrentValues { get; }
11 references to CurrentValues
System.Data.Entity (11)
System\Data\Mapping\Update\Internal\ExtractorMetadata.cs (1)
224keyValue = entityEntry.CurrentValues[keyMember.Name];
System\Data\Mapping\Update\Internal\FunctionMappingTranslator.cs (2)
166candidateEntry.CurrentValues, 175candidateEntry.CurrentValues,
System\Data\Mapping\Update\Internal\KeyManager.cs (1)
308var currentValues = addedEntry.CurrentValues;
System\Data\Mapping\Update\Internal\PropagatorResult.cs (1)
392return m_stateEntry.CurrentValues;
System\Data\Mapping\Update\Internal\RecordConverter.cs (1)
80? EntityUtil.CheckArgumentNull(stateEntry.CurrentValues as IExtendedDataRecord, "stateEntry.CurrentValues")
System\Data\Mapping\Update\Internal\RelationshipConstraintValidator.cs (1)
81GetEntityType(stateEntry.CurrentValues) :
System\Data\Mapping\Update\Internal\UpdateCommand.cs (1)
144DbDataRecord record = isAdded ? (DbDataRecord)stateEntry.CurrentValues : stateEntry.OriginalValues;
System\Data\Mapping\Update\Internal\UpdateTranslator.cs (3)
174(DbDataRecord)stateEntry.CurrentValues : stateEntry.OriginalValues; 222? (IExtendedDataRecord)stateEntry.CurrentValues 940record = (IExtendedDataRecord)stateEntry.CurrentValues;