我有一个动态对象被用作ApiController
. 即:
public class Shape
{
public dynamic Coordinates { get; set; }
public string Id { get; set; }
public string Type { get; set; }
}
任何形状的坐标都是不同的,圆有中心和半径,线有 x1、y1、x2、y2 等。
我正在尝试将此对象存储在 Mongo 中。
我希望的是:
{
"Shapes": [
{
"Coordinates": {
"x1": 1,
"y1": 2,
"x2": 3,
"y2": 4
}
},
"Type": "line"
},
{
"Coordinates": "{ "x" : 10, "y" : 20, "r" : 30,},
"Type": "circle"
}
],
}
当我使用BsonExtensionMethods.ToJson(coordinates)
我得到
{
"Shapes": [
{
"Coordinates": "{ \"x1\" : [], \"y1\" : [], \"x2\" : [], \"y2\" : [] }",
"Type": "line"
}
],
}
当我使用时,(JObject) coordinates
我得到:
{
"Shapes": [
{
"Coordinates": {
"_t": "Newtonsoft.Json.Linq.JObject, Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed",
"_v": {
"x1": [
],
"y1": [
],
"x2": [
],
"y2": [
]
}
},
"Type": "line"
}
],
}
我宁愿不必将其存储为字符串。如何说服 .NET 我要存储动态对象的值?