I'm consuming a set of data services with the help of a service reference and using the call
svc.AddToXXX(new XXX() {//some properties})
to create a new resource of type XXX. However unlike the update resource call, which uses a MERGE request, this results in a POST request which ends up initializing all unspecified properties with their default value. Is there a way to force it to only initialize the specified properties?