Given the following class:

public class Entity
{
    public Guid UniqueId
    {
        get;
        set;
    }
}

The following test fails:

    [Test]
    public void GuidTest()
    {
        var entity = new Entity { UniqueId = Guid.NewGuid() };
        var entityJson = JsonConvert.SerializeObject(entity);
        dynamic reconstitutedEntity = JsonConvert.DeserializeObject<ExpandoObject>(entityJson);
        Assert.That(reconstitutedEntity.UniqueId, Is.EqualTo(entity.UniqueId));
    }

With the error:

Expected: 35ac3081-07cb-41dd-bf40-22e2ff47863c But was: "35ac3081-07cb-41dd-bf40-22e2ff47863c"

Is this a bug in Json.Net or expected behavior? How do I get the test to pass using ExpandoObject?

If I replace ExpandoObject with Entity, it works just fine. Do I have to write a custom JsonConverter? I attempted this but for some reason, ReadJson was never called though CanConvert and WriteJson were (successfully).

link|improve this question

71% accept rate
feedback

1 Answer

The ExpandoObject has no way of knowing that you want that field to be a Guid type, so the property type is probably a string. To confirm, run this test:

Debug.Assert(reconstitudedEntity.UniqueId is String);
link|improve this answer
Thanks for the reply but that much is obvious. It's stated clearly in the "but was" part of the assertion failure. – DPeden Jan 27 at 21:23
feedback

Your Answer

 
or
required, but never shown

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