I've a JSON content and trying to add new property after deserializing to custom object using Json.net. After creating new property, it is not updating its reference type. I'm not sure what I'm missing here. Can anyone help?
This is base class which inherits Dictionary type.
<!-- language: c# -->
public abstract class BaseData : Dictionary<string, object>
{
public string ID
{ get { return this["Id"] as string; } }
public string Title
{ get { return this["Title"] as string; } }
}
This is my page class
public class CPage : BaseData
{
public CPage(){ }
public CPageTemplate PageTemplate
{
get { return (this["PageTemplate"] as JObject).ToObject<CPageTemplate>(); }
}
}
This is my template class
public class CPageTemplate : BaseData
{
public CPageTemplate(){}
public CPageTemplate(PageTemplate pt)
{
this.Add("Id", pt.Id.ToString());
this.Add("Title", pt.Title);
}
}
JSON content is
{
"Id": "P_1",
"Title": "enrolled",
"PageTemplate": {
"Id": "PT_1",
"Title": "PageTemplate Transform"
}
}
Usage is below
JObject jo = JObject.Parse(File.ReadAllText(@"stack.json"));
CPage cPage = JsonConvert.DeserializeObject<CPage>(jo.ToString());
cPage["Id"] = "C_1"; // works correctly
cPage.PageTemplate["Dynamic"] = true; // not able to retrieve
After setting "Dynamic" property, if i read cPage object, i couldn't find "Dynamic" key. Same thing is happening while changing the values for existing "Id" or "Title" properties. Even after I'm updating, i can see only old values.
Also, If i update Id of Page object, i'm able to retrieve it cPage object. Any changes in PageTemplate is not getting reflected.
Can anyone help me on this?