Owned type property not persisting for a modified entity in EF Core
问题 I'm trying to achieve something in EF Core that worked very well for me in EF 6. I'm serializing the contents of a List<T> property as a Json string in the DB. <T> can be pretty much anything, since Json.Net takes care of serializing whatever we throw at it. My collection exposes a Json string property and takes care of serializing/deserializing itself. This approach is convenient and efficient for structured nested data where a relational model would bring needless overhead and complexity.