I would like to use JSON.net to deserialize to an object but put unmapped properties in a dictionary property. Is it possible?

For example given the json,

 {one:1,two:2,three:3}

and the c# class:

public class Mapped {
   public int One {get; set;}
   public int Two {get; set;}
   public Dictionary<string,object> TheRest {get; set;}
}

Can JSON.NET deserialize to an instance with values one=1, two=1, TheRest= Dictionary{{"three,3}}

link|improve this question

43% accept rate
Updated the code in my answer to make it more generic. – David Hoerster Jul 26 '11 at 15:09
feedback

3 Answers

You can create a CustomCreationConverter to do what you need to do. Here's a sample (rather ugly, but demonstrates how you may want to go about this):

namespace JsonConverterTest1
{
    public class Mapped
    {
        private Dictionary<string, object> _theRest = new Dictionary<string, object>();
        public int One { get; set; }
        public int Two { get; set; }
        public Dictionary<string, object> TheRest { get { return _theRest; } }
    }

    public class MappedConverter : CustomCreationConverter<Mapped>
    {
        public override Mapped Create(Type objectType)
        {
            return new Mapped();
        }

        public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
        {
            var mappedObj = new Mapped();
            var objProps = objectType.GetProperties().Select(p => p.Name.ToLower()).ToArray();

            //return base.ReadJson(reader, objectType, existingValue, serializer);
            while (reader.Read())
            {
                if (reader.TokenType == JsonToken.PropertyName)
                {
                    string readerValue = reader.Value.ToString().ToLower();
                    if (reader.Read())
                    {
                        if (objProps.Contains(readerValue))
                        {
                            PropertyInfo pi = mappedObj.GetType().GetProperty(readerValue, BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance);
                            var convertedValue = Convert.ChangeType(reader.Value, pi.PropertyType);
                            pi.SetValue(mappedObj, convertedValue, null);
                        }
                        else
                        {
                            mappedObj.TheRest.Add(readerValue, reader.Value);
                        }
                    }
                }
            }
            return mappedObj;
        }
    }

    public class Program
    {
        static void Main(string[] args)
        {
            string json = "{'one':1, 'two':2, 'three':3, 'four':4}";

            Mapped mappedObj = JsonConvert.DeserializeObject<Mapped>(json, new MappedConverter());

            Console.WriteLine(mappedObj.TheRest["three"].ToString());
            Console.WriteLine(mappedObj.TheRest["four"].ToString());
        }
    }
}

So the output of mappedObj after you deserialize the JSON string will be an object with its One and Two properties populated, and everything else put into the Dictionary. Granted, I hard-coded the One and Two values as ints, but I think this demonstrates how you'd go about this.

I hope this helps.

EDIT: I updated the code to make it more generic. I didn't fully test it out, so there may some cases where it fails, but I think it gets you most of the way there.

link|improve this answer
David that is a great, but i was hoping for a more generic solution. – PhilHoy Jul 26 '11 at 13:29
Yeah, I put it together kind of quickly. I can't get back to it right now, but I'll make it a bit more generic shortly. It would probably involve a little bit of reflection. However, the basic structure won't change -- just the logic in the second if(reader.Read()) block. But hopefully you can see where I'm going with this. BTW, very cool question that you asked. – David Hoerster Jul 26 '11 at 13:33
Updated the code to make it more generic for different property names and/or types. – David Hoerster Jul 26 '11 at 15:10
feedback

try this if you can go without JSON.NET

DataContractJsonSerializer Class

there is a sample code too in it

DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(Mapped));

link|improve this answer
I don't think this answers the original problem. – David Hoerster Jul 26 '11 at 12:41
feedback

For this code:

        Mapped m = new Mapped()
        {
            One = 1,
            Two = 2,
            TheRest = new Dictionary<string,object>(),
        };
        m.TheRest.Add("tree", 3);

        string output = JsonConvert.SerializeObject(m);
        Console.WriteLine(output);

I got:

{"One":1,"Two":2,"TheRest":{"tree":3}}

And JsonConvert.DeserializeObject(output) also works fine and returns the right result.

link|improve this answer
I think he's starting from the JSON string, and trying to populate the object...not starting with the object and generating the JSON string. – David Hoerster Jul 26 '11 at 13:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.