Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Overlay data from JSON string to existing object instance

I want to deserialize a JSON string which does not necessarily contain data for every member, e.g:

public class MyStructure {    public string Field1;    public string Field2; } 

Suppose I have an instance:

Field1: "data1" Field2: "data2" 

and I deserialize a string:

{ "Field1": "newdata1" }

The result should be

Field1: "newdata1" Field2: "data2" 

Framework JavascriptSerializer and JSON.NET both return new objects in their deserialize methods, so the only way I can think of doing this directly would be to compare the deserialized object with the existing one using reflection which seems like a lot of unnecessary overhead. Ideally, some software would have a method in which I passed an existing instance of an object, and only those members which existed in the string would get updated. The point here is that I would like to be able to pass only data which has changed to the server, and update an existing object.

Is this possible using either of these tools, and if not, any suggestions on how to approach the problem?

like image 210
Jamie Treworgy Avatar asked Mar 01 '11 16:03

Jamie Treworgy


1 Answers

After poking around the source code (so much easier than reading the documentation, eh?) JSON.NET does exactly what I want already:

JsonConvert.PopulateObject(string, object)

See Json.NET: Populate an Object

like image 107
Jamie Treworgy Avatar answered Sep 20 '22 02:09

Jamie Treworgy