Coder Social home page Coder Social logo

Comments (2)

Abrynos avatar Abrynos commented on May 25, 2024

In case you're wondering why I'm assigning an empty default value in the first place:

  1. Enable nullable-feature
  2. Enable all warnings
  3. Enable "treat all warnings as errors"
  4. We definitely don't want anyone to instantiate the class manually; Therefore, make the only constructor private without arguments.
  5. Build fails due to CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.

from newtonsoft.json.

elgonzo avatar elgonzo commented on May 25, 2024

Disclaimer: I am just a user of the library and not associated with the project nor its author/maintainer.

Not a bug.

It's the default for the ObjectCreationHandling setting in action. It's a bit unfortunate that this particular behavior has been chosen the default behavior, because it (unsurprisingly) catches quite a few users by surprise, but that choice had been made quite long ago, and with so many software projects relying on Newtonsoft.Json it is rather unlikely that a default setting will change... :(

In your case, both the FirstContained and DifferentValue properties are initialized with the same Contained.Empty instance. And when Newtonsoft.Json deserializes the json objects for FirstContained and DifferentValue, it uses the assigned Contained instance(s) to assign the value for the DifferentValue property to it.

In other words, you see the same value for result.FirstContained.DifferentValue and result.SecondContained.DifferentValue because result.FirstContained and result.SecondContained refer to the same Contained.Empty instance, and Newtonsoft.Json is reusing (populating) this Contained.Empty instance instead of creating and assigning new Contained instances to the FirstContained/SecondContained properties. This means, not only did you see a result you didn't expect, but the Contained.Empty instance itself got modified by the deserializer, too.

To instruct Newtonsoft.Json to not reuse object instances but replace existing object instances with new ones, either set the [JsonProperty] attribute's ObjectCreationHandling property to ObjectCreationHandling.Replace. Or, if this setting should affect the entire deserialization job, set the ObjectCreationHandling property in an JsonSerializerSettings instance and pass this JsonSerializerSettings instance to the (de)serializer.

P.S.: It is probably a good idea to spend a little time studying the default values used for the serialization settings used by the (de)serializer. Because there might be other default settings (and thus default behavior) of Newtonsoft.Json that you might or might not intuitively expect...

from newtonsoft.json.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.