26 references to GetValue
System.Data.Entity (26)
System\Data\Objects\DataClasses\EntityReference.cs (4)
495object value = principalTypeMetadata.Member(principalOrdinal).GetValue(principalEntity.Entity); 497bool valueChanging = !ByValueEqualityComparer.Default.Equals(dependentTypeMetadata.Member(dependentOrdinal).GetValue(dependentEntity.Entity), value); 585object currentValue = dependentTypeMetadata.Member(dependentOrdinal).GetValue(dependentEntity.Entity); 678if (member.GetValue(WrappedOwner.Entity) != null)
System\Data\Objects\DataClasses\RelatedEnd.cs (1)
613return metaMember.GetValue(_wrappedOwner.Entity);
System\Data\Objects\EntityEntry.cs (19)
1107newValue = memberMetadata.GetValue(changingObject); 1147newValue = memberMetadata.GetValue(changingObject); 1216oldOriginalValue = memberMetadata.GetValue(userObject); 1285object oldValue = memberMetadata.GetValue(changingObject); 1334retValue = member.GetValue(userObject); 1458oldComplexMemberValue = complexMemberMetadata.GetValue(oldComplexObject); 1464ExpandComplexTypeAndAddValues(complexMemberMetadata, oldComplexMemberValue, complexMemberMetadata.GetValue(newComplexObject), useOldComplexObject); 1476originalValue = complexMemberMetadata.GetValue(newComplexObject); 1485originalValue = complexMemberMetadata.GetValue(oldComplexObject); 1499originalValue = complexMemberMetadata.GetValue(newComplexObject); 1690currentValue = member.GetValue(this._wrappedEntity.Entity); 1696currentValue = member.GetValue(this._wrappedEntity.Entity); 1737object currentValue = complexMember.GetValue(complexValue); 1821var currentValue = member.GetValue(this._wrappedEntity.Entity); 1949currentValue = member.GetValue(complexValue); 2063object nestedValue = complexMember.GetValue(currentValue); 2961currentValueNew = member.GetValue(changed); 2962currentValueOld = member.GetValue(_wrappedEntity.Entity); 3289object fieldValue = member.GetValue(value) ?? DBNull.Value;
System\Data\Objects\ObjectStateManager.cs (2)
1489object entityValue = typeMetadata.Member(ordinal).GetValue(wrappedEntity.Entity); 3735keyValues[i] = typeMetadata.Member(ordinal).GetValue(entity);