1 override of GetMemberValue
System.Data.Entity (1)
System\Data\Mapping\Update\Internal\PropagatorResult.cs (1)
543internal override PropagatorResult GetMemberValue(int ordinal)
11 references to GetMemberValue
System.Data.Entity (11)
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (5)
141PropagatorResult result = this.CurrentValues.GetMemberValue(columnOrdinal); 329object thisValue = thisResult.GetMemberValue(keyOrdinal).GetSimpleValue(); 330object otherValue = otherResult.GetMemberValue(keyOrdinal).GetSimpleValue(); 340int thisValue = thisResult.GetMemberValue(keyOrdinal).Identifier; 341int otherValue = otherResult.GetMemberValue(keyOrdinal).Identifier;
System\Data\Mapping\Update\Internal\PropagatorResult.cs (1)
164return GetMemberValue(ordinal);
System\Data\Mapping\Update\Internal\TableChangeProcessor.cs (1)
271PropagatorResult constant = row.GetMemberValue(m_keyOrdinals[i]);
System\Data\Mapping\Update\Internal\UpdateCompiler.cs (4)
206PropagatorResult propertyResult = row.GetMemberValue(propertyOrdinal); 301PropagatorResult originalPropertyResult = originalRow.GetMemberValue(propertyOrdinal); 372PropagatorResult expectedValue = referenceRow.GetMemberValue(propertyOrdinal); 373PropagatorResult newValue = null == current ? null : current.GetMemberValue(propertyOrdinal);