What is the best practice for developing an "update" method in a WCF service? Imagine a scenario where you have an Organization object that has an OrganizationName and OrganizationAddress as two properties. The client wants to update just the OrganizationName and send a null back as the OrganizationAddress. At this point, in the WCF service, I don't know if they meant to send a null to *remove* the address or if they wanted me to ignore that field as part of the update. Obviously this only comes into play with objects with many properties.
Thanks in advance for any help.
