Setting a custom json converter for DocumentDb

杀马特。学长 韩版系。学妹 提交于 2019-12-07 02:57:51

问题


I am using a typed DocumentQuery to read documents from a collection of an Azure DocumentDb.

from f in client.CreateDocumentQuery<MyModel>(Collection.SelfLink) select f

Because I do not find a way how I can set the neccesarry custom json converter, it throws this exeption:

Could not create an instance of type AbstractObject. Type is an interface or abstract class and cannot be instantiated.

Usually you do something like this to make it work:

var settings = new JsonSerializerSettings();
settings.Converters.Add(new MyAbstractConverter());
client.SerializerSettings = settings;

DocumentClient doesn't have any SerializerSettings. So the question is, how can I tell the DocumentDB client that it must use a custom converter when deserializing the json data to my model?


回答1:


You can add [JsonConverter(typeof(MyAbstractConverter))] to your model class.

Here's an example model class with custom Json settings:

namespace DocumentDB.Samples.Twitter
{
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using DocumentDB.Samples.Shared.Util;
    using Newtonsoft;
    using Newtonsoft.Json;

    /// <summary>
    /// Represents a user.
    /// </summary>
    public class User
    {
        [JsonProperty("id")]
        public long UserId { get; set; }

        [JsonProperty("name")]
        public string Name { get; set; }

        [JsonProperty("screen_name")]
        public string ScreenName { get; set; }

        [JsonProperty("created_at")]
        [JsonConverter(typeof(UnixDateTimeConverter))]
        public DateTime CreatedAt { get; set; }

        [JsonProperty("followers_count")]
        public int FollowersCount { get; set; }

        [JsonProperty("friends_count")]
        public int FriendsCount { get; set; }

        [JsonProperty("favourites_count")]
        public int FavouritesCount { get; set; }
    }
}



回答2:


The latest CosmosDB SDK now includes support for JsonSerializerSettings so you don't have to use JsonConverter anymore, you can use your own ContractResolver. See related SO post.



来源:https://stackoverflow.com/questions/27427880/setting-a-custom-json-converter-for-documentdb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!