0

我有一个 Web API 项目,它可以从 JSON 中对定义为以下内容的对象进行水合。我正在尝试将此对象插入 RavenDB 数据库,但发现动态属性“内容”未正确序列化(注意空数组)。

我尝试了几种序列化程序来生成 json 字符串:System.Helpers.Json.Encode()、System.Web.Script.Serialization.JavaScriptSerializer。两者都面临同样的问题。

RavenJObject.fromObject(obj) 也有同样的问题。

尽管 CLR 反射有明显的限制,有没有办法完成我的目标?

public class SampleType
    {
        public Guid? Id { get; private set; }
        public dynamic Content { get; set; }
        public string Message { get; set; }
        public string Actor { get; set; }

        public LogEntry()
        {
            Id = Guid.NewGuid();
        }
    }

JSON submitted to API:
{
    "Content": {
        "SomeNumber": 5,
        "ADate": "/Date(1360640329155)/",
        "MaybeABoolean": true,
        "EmptyGUID": "00000000-0000-0000-0000-000000000000"
    },
    "Message": "Hey there",
    "Actor": "John Dow"
}

Hydrated object:
    ID: {b75d9134-2fd9-4c89-90f7-a814fa2f244d}
    Content: {
        "SomeNumber": 5,
        "ADate": "2013-02-12T04:37:44.029Z",
        "MaybeABoolean": true,
        "EmptyGUID": "00000000-0000-0000-0000-000000000000"
    }
    Message: "Hey there",
    Actor: "John Dow"

JSON from all three methods:
{
    "Id": "b75d9134-2fd9-4c89-90f7-a814fa2f244d",
    "Content": [
        [
            []
        ],
        [
            []
        ],
        [
            []
        ],
        [
            []
        ]
    ],
    "Message": "Hey there",
    "Actor": "John Dow"
}
4

4 回答 4

2

我记得我们使用了 Newtonsoft JSON 序列化程序,它可以很好地处理动态对象和 Expando 对象。

于 2013-02-12T05:14:01.240 回答
0

您可以为此使用 Planet 最快的库Servicestack.Text。您的问题的解决方案已在此处得到解答。

于 2013-02-12T05:13:27.873 回答
0

您的动态对象必须正确实现 GetDynamicFieldNames() 方法才能使动态序列化工作。

于 2013-02-12T08:07:22.370 回答
0

我真的不确定你在说什么。

public class Foo
{
    public dynamic Bar { get; set; }
}

var foo = new Foo { Bar = new { A = 1, B = "abc", C = true } };
Debug.WriteLine(RavenJObject.FromObject(foo).ToString(Formatting.None));
Debug.WriteLine(JsonConvert.SerializeObject(foo, Formatting.None));

这两个的输出是:

{"Bar":{"A":1,"B":"abc","C":true}}

我错过了什么?

于 2013-02-12T16:52:13.853 回答