I have a flattened JSON:
{
"CaseName" : "John Doe v. State",
"CaseDate" : "<some date>",
"Client.FirstName" : "John",
"Client.LastName" : "Doe",
"Client.Email" : "johndoe@gmail.com"
etc...
}
I want to deserialize it back to this entity:
public class Case()
{
public string CaseName { get; set; }
public string CaseDate { get; set; }
public Client Client { get; set; }
}
where Client.FirstName, Client.LastName, and Client.Email are properties in the Client object. Using Json.NET, is there any way to get it to parse the dot notation and deserialize this entity correctly? Currently, using the default settings, it tells me that Client.FirstName is not a property in type Case.
Yes, you can. You would derive a class from
JsonConverterand override theCanConvertmethod to indicae that you can convert theClienttype.Then, you would override the
ReadJsonandWriteJsonmethods to read and write the fields of the JSON literal.For a JSON literal like this, it’s more than likely you will need to create a
JsonConverterfor theCasetype, as you will need to cache all the properties of theClientobject during serialization until you have enough information to actually create theClientinstance.Then, you would call the
Addmethod on theJsonConverterCollectioninstance exposed by theConvertersproperty on theJsonSerializerinstance you are using to perform your serialization/deserialization.Note that if you need to do this for a number of different classes that might be represented in this manner, then you can write one
JsonConverterimplementation, and have it scan for an attribute on the property. If the property has the attribute and exposes another object with properties, it would expect to read/write the dot-notation.It should be noted that while you are using the dot-notation for the identifier, it’s very uncommon to do so. If possible, on the side that is constructing the JSON literal, it should be doing it in this manner:
But that’s assuming that you have control over that end. If you don’t, then there’s not much you can do.
If you do have control, then constructing your JSON literals in that manner would negate the need for a custom
JsonConverterimplementation.