CouchbaseClient.StoreJson不存储Id属性

时间:2014-12-26 10:15:10

标签: .net couchbase enyim.caching

第三个断言失败。它是CouchbaseClient的错误吗?

   private class StoreJsonTest
    {
        public int Id { get; set; }
        public string StrProp { get; set; }
        public int IntProp { get; set; }
    }

    [Test]
    public void CouchBase()
    {
        var storeJsonTest = new StoreJsonTest() {Id = 1, StrProp = "Test str prop", IntProp = 10};
        string key ="testStoreJson"+ Guid.NewGuid().ToString();
        CouchbaseClient couchbaseClient = new CouchbaseClient();
        couchbaseClient.StoreJson(StoreMode.Add, key, storeJsonTest);
        var extractedJson = couchbaseClient.GetJson<StoreJsonTest>(key);
        Assert.That(extractedJson.StrProp == storeJsonTest.StrProp);
        Assert.That(extractedJson.IntProp == storeJsonTest.IntProp);
        Assert.That(extractedJson.Id == storeJsonTest.Id);
    }

如何将Id属性存储到couchbase?

1 个答案:

答案 0 :(得分:1)

在应用程序启动中的某处添加以下行:

CouchbaseClientExtensions.JsonSerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();

默认合约解析程序是一个内部实现,它序列化除ID属性之外的所有内容。

'CamelCasePropertyNamesContractResolver'来自Newtonsoft.Json.Serialization命名空间。