Can Json.NET deserialize a flattened JSON string with dot notation?
问题 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