Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的一个项目使用 ServiceStack.Text 的 JSON 序列化内容。但是,在反序列化数据时,我希望能够覆盖创建对象实例的部分。我希望它使用我的 IoC 容器来创建反序列化期间所需的任何新对象的实例。关于如何做到这一点的任何想法?
在ServiceStack 的 JSON 序列化器中有钩子:
JsConfig<T>.OnSerializingFn
和
JsConfig<T>.OnDeserializedFn
那应该让你这样做。