Similar to this question, I have a class with several different property types, including BsonDocument.
public class Report
{
[BsonId, JsonIgnore]
public ObjectId _id { get; set; }
public string name { get; set; }
[JsonIgnore]
public BsonDocument layout { get; set; }
[BsonIgnore, JsonProperty(PropertyName = "layout")]
public string layout2Json
{
get { return layout.ToJson(); }
}
}
The reason for having BsonDocument in there, is that the layout-property is unstructured and I cannot have any strongly typed sub-classes. Now when the ApiController returns this class, I get something like this:
{
name: "...",
layout: "{type: "...", sth: "..."}"
}
But what I need is the layout-property as an object, not a string.
Is there a way in JSON.NET to plug in a json-string - which is already valid json - as an object and not a string?
The following works, but seems quite wasteful:
[BsonIgnore, JsonProperty(PropertyName = "layout")]
public JObject layout2Json
{
get { return JObject.Parse(layout.ToJson()); }
}