How to serialize/deserialize a custom collection with additional properties using Json.Net

20,497

Solution 1

The problem is the following: when an object implements IEnumerable, JSON.net identifies it as an array of values and serializes it following the array Json syntax (that does not include properties), e.g. :

 [ {"FooProperty" : 123}, {"FooProperty" : 456}, {"FooProperty" : 789}]

If you want to serialize it keeping the properties, you need to handle the serialization of that object by hand by defining a custom JsonConverter :

// intermediate class that can be serialized by JSON.net
// and contains the same data as FooCollection
class FooCollectionSurrogate
{
    // the collection of foo elements
    public List<Foo> Collection { get; set; }
    // the properties of FooCollection to serialize
    public string Bar { get; set; }
}

public class FooCollectionConverter : JsonConverter
{
    public override bool CanConvert(Type objectType)
    {
        return objectType == typeof(FooCollection);
    }

    public override object ReadJson(
        JsonReader reader, Type objectType, 
        object existingValue, JsonSerializer serializer)
    {
        // N.B. null handling is missing
        var surrogate = serializer.Deserialize<FooCollectionSurrogate>(reader);
        var fooElements = surrogate.Collection;
        var fooColl = new FooCollection { Bar = surrogate.Bar };
        foreach (var el in fooElements)
            fooColl.Add(el);
        return fooColl;
    }

    public override void WriteJson(JsonWriter writer, object value, 
                                   JsonSerializer serializer)
    {
        // N.B. null handling is missing
        var fooColl = (FooCollection)value;
        // create the surrogate and serialize it instead 
        // of the collection itself
        var surrogate = new FooCollectionSurrogate() 
        { 
            Collection = fooColl.ToList(), 
            Bar = fooColl.Bar 
        };
        serializer.Serialize(writer, surrogate);
    }
}

Then use it as follows:

var ss = JsonConvert.SerializeObject(collection, new FooCollectionConverter());

var obj = JsonConvert.DeserializeObject<FooCollection>(ss, new FooCollectionConverter());

Solution 2

Personally I like to avoid writing custom JsonConverters where possible, and instead make use of the various JSON attributes which were designed for this purpose. You can simply decorate FooCollection with JsonObjectAttribute, which forces serialization as a JSON object rather than an array. You'd have to decorate the Count and IsReadOnly properties with JsonIgnore to prevent them from showing up in the output. If you want to keep _foos a private field, you would also have to decorate it with JsonProperty.

[JsonObject]
class FooCollection : IList<Foo> {
    [JsonProperty]
    private List<Foo> _foos = new List<Foo>();
    public string Bar { get; set; }  

    // IList implementation
    [JsonIgnore]
    public int Count { ... }
    [JsonIgnore]
    public bool IsReadOnly { ... }
}

Serializing yields something like the following:

{
  "_foos": [
    "foo1",
    "foo2"
  ],
  "Bar": "bar"
}

Obviously this only works if you are able to change the definition of FooCollection in order to add those attributes, otherwise you have to go the way of custom converters.

Solution 3

If you don't want to write custom JsonConverter or use JSON attributes (JsonObjectAttribute), you could use following extension method:

public static string ToFooJson<T>(this FooCollection fooCollection)
{
     return JsonConvert.SerializeObject(new
     {
         Bar = fooCollection.Bar,
         Collection = fooCollection
     });
}

Solution 4

If you also want to keep the contents of the List or collection itself, You should consider exposing a property to return the list. It has to be wrapped to prevent cyclic issues while serializing:

Note: This solution supports both serializing/deserializing.

[JsonObject]
public class FooCollection : List<int>
{
    public string Bar { get; set; } = "Bar";

    [JsonProperty]
    ICollection<int> Items => new _<int>(this);
}

internal class _<T> : ICollection<T>
{
    public _(ICollection<T> collection) => inner = collection;
    private ICollection<T> inner;
    int ICollection<T>.Count => inner.Count;
    bool ICollection<T>.IsReadOnly => inner.IsReadOnly;
    void ICollection<T>.Add(T item) => inner.Add(item);
    void ICollection<T>.Clear() => inner.Clear();
    bool ICollection<T>.Contains(T item) => inner.Contains(item);
    void ICollection<T>.CopyTo(T[] array, int arrayIndex) => inner.CopyTo(array, arrayIndex);
    IEnumerator<T> IEnumerable<T>.GetEnumerator() => inner.GetEnumerator();
    bool ICollection<T>.Remove(T item) => inner.Remove(item);
    IEnumerator IEnumerable.GetEnumerator() => inner.GetEnumerator();
}

new FooCollection { 1, 2, 3, 4, 4 } =>

{
  "bar": "Bar",
  "items": [
    1,
    2,
    3
  ],
  "capacity": 4,
  "count": 3
}

new FooCollection { 1, 2, 3 }.ToArray() => new []{1, 2, 3}.ToArray()

Solution 5

Does inheriting from List work?

class FooCollection : List<Foo>, IList<Foo>
{
    public string Bar { get; set; }        
    //Implement IList, ICollection and IEnumerable members...
}
Share:
20,497
Pierluc SS
Author by

Pierluc SS

Updated on November 27, 2021

Comments

  • Pierluc SS
    Pierluc SS over 2 years

    I have a custom collection (implements IList) which has some custom properties as shown below:

    class FooCollection : IList<Foo> {
    
        private List<Foo> _foos = new List<Foo>();
        public string Bar { get; set; }        
    
        //Implement IList, ICollection and IEnumerable members...
    
    }
    

    When I serialize, I use the following code:

    JsonSerializerSettings jss = new JsonSerializerSettings() {
        TypeNameHandling = TypeNameHandling.Auto
    };
    string serializedCollection = JsonConvert.SerializeObject( value , jss );
    

    It serializes and deserializes all the collection items properly; however, any extra properties in the FooCollection class are not taken into account.

    Is there anyway to include them in the serialization?

  • Pierluc SS
    Pierluc SS over 11 years
    It'd be surprising, however, unless ABSOLUTELY necessary I'll go that route, ideally I want to keep inheritance the same.
  • qujck
    qujck over 11 years
    Currently you're trying to serialize a private property - by inheriting you become the object you're asking to be serialized (this is obviously not the only way, but could well be the easiest)
  • Rupert Rawnsley
    Rupert Rawnsley over 10 years
    As @digEmAll points out, this won't work because JSON.net uses the collection serializer, which doesn't check for additional properties. However, I must agree with qujck that if your class IS A List<> then it is best to inherit directly from List<> rather than have to implement the whole IList<> interface. The only exception is if it already has to implement some other fat base class.
  • Jeff
    Jeff over 10 years
    This helped me, however JSON.NET did not like it when I used Foo[] as the type in the surrogate - I had to use an IEnumerable<Foo>
  • digEmAll
    digEmAll over 10 years
    Mmh... strange, what version of json.net are you using ?
  • Jeff
    Jeff over 10 years
    Not sure, can't check at this time, but the one from nugget targeting .NET 4.0
  • digEmAll
    digEmAll over 10 years
    I've just checked and it works fine with both version 4.5.11.15520 and 5.0.8.16617... I suspect you're doing something slightly different from the code above...
  • Jeff
    Jeff over 10 years
    Well, I got an exception saying something along the lines of "cannot preserve reference to an array or read-only list, ... stuff I don't remember". Regardless, using IEnumerable (List implementation) works for me. :)
  • digEmAll
    digEmAll over 10 years
    @Jeff: Ah you have activated the PreserveReferencesHandling... so yes, there's a problem with that mode and arrays, so of course if you just change the collection to List or IEnumerable it works ;)
  • Jeff
    Jeff over 10 years
    Why is there a problem with arrays? They are passed by reference, aren't they?
  • digEmAll
    digEmAll over 10 years
    I don't know exactly the reason, but readonly lists and arrays do not work with preserve reference handling on... (there's also a JSON.net test that includes this case)
  • Jeff
    Jeff over 10 years
    Well, in that case, you might want to add that to your answer for future readers. :)
  • digEmAll
    digEmAll over 10 years
    @Jeff: I've replaced the array with a list, so people won't have a crash in case of preserve-reference = true
  • Jeff
    Jeff over 10 years
    Thanks, and a well-deserved +1 :)
  • Chris Marisic
    Chris Marisic over 7 years
    Since I'm working with c# models that are persisted json documents, this was the best option for me. I'm entirely fine with decorating my model with information that mirrors its physical persistence. As this case the documents are 100% coupled to the json.
  • Little Endian
    Little Endian almost 5 years
    I think you can avoid the JsonIgnore by implementing the interface explicitly.
  • Piotr Kula
    Piotr Kula over 4 years
    Today I learnt that using explicit interfaces it will not serialise those members. Problem is I don't know why? Whats the story behind this Little Endian