private void ApplyResourceInNestedProperty(IEdmProperty nestedProperty, object resource, ODataResourceWrapper resourceWrapper, ODataDeserializerContext readContext) { Contract.Assert(nestedProperty != null); Contract.Assert(resource != null); Contract.Assert(readContext != null); if (readContext.IsDeltaOfT) { IEdmNavigationProperty navigationProperty = nestedProperty as IEdmNavigationProperty; if (navigationProperty != null) { string message = Error.Format(SRResources.CannotPatchNavigationProperties, navigationProperty.Name, navigationProperty.DeclaringEntityType().FullName()); throw new ODataException(message); } } object value = ReadNestedResourceInline(resourceWrapper, nestedProperty.Type, readContext); // First resolve Data member alias or annotation, then set the regular // or delta resource accordingly. string propertyName = readContext.Model.GetClrPropertyName(nestedProperty); DeserializationHelpers.SetProperty(resource, propertyName, value); }
private void ApplyResourceInNestedProperty(IEdmProperty nestedProperty, object resource, ODataResourceWrapper resourceWrapper, ODataDeserializerContext readContext) { Contract.Assert(nestedProperty != null); Contract.Assert(resource != null); Contract.Assert(readContext != null); object value = ReadNestedResourceInline(resourceWrapper, nestedProperty.Type, readContext); // First resolve Data member alias or annotation, then set the regular // or delta resource accordingly. string propertyName = readContext.Model.GetClrPropertyName(nestedProperty); DeserializationHelpers.SetProperty(resource, propertyName, value); }