2 implementations of GetNavigationPropertyValue
System.Data.Entity (2)
System\Data\Objects\Internal\BaseEntityWrapper.cs (1)
225public abstract object GetNavigationPropertyValue(RelatedEnd relatedEnd);
System\Data\Objects\Internal\NullEntityWrapper.cs (1)
163public object GetNavigationPropertyValue(RelatedEnd relatedEnd)
7 references to GetNavigationPropertyValue
System.Data.Entity (7)
System\Data\Objects\DataClasses\EntityCollection.cs (1)
737object value = this.WrappedOwner.GetNavigationPropertyValue(this);
System\Data\Objects\DataClasses\EntityReference.cs (1)
620return !TargetAccessor.HasProperty || WrappedOwner.GetNavigationPropertyValue(this) == null;
System\Data\Objects\DataClasses\EntityReference_TResultType.cs (2)
713object value = this.WrappedOwner.GetNavigationPropertyValue(this); 722object value = WrappedOwner.GetNavigationPropertyValue(this);
System\Data\Objects\EntityEntry.cs (3)
2107var principal = WrappedEntity.GetNavigationPropertyValue(reference); 2138object val = this.WrappedEntity.GetNavigationPropertyValue(relatedEnd); 2260object val = this.WrappedEntity.GetNavigationPropertyValue(relatedEnd);