为 RavenDB 中的泛型类型定义全局自定义序列化器
您好,我正在尝试使用 RavenDB 序列化 F# 集合。只要您坚持使用普通的 .net 集合,这就没问题。 但我想序列化 F#-列表、元组甚至集合。
现在,据我了解,我可以用一些属性来装饰我的 F# 对象,以连接一些 Json.net 功能(但我也不完全知道如何操作)。
但我希望有一种方法可以告诉 RavenDB 进行序列化 - 让我们说所有 List<'a>以某种方式(确切地说 - 只需将它们作为 IEnumerable/Seq 处理并在构造函数中使用 List.ofSeq)
这可能吗?如果可以,您能准确解释一下如何实现吗?
Hi I'm trying to use RavenDB to serialize F# collections. This is no problem as long as you stick to the normal .net collections.
But I want to serialize F#-Lists, Tuples and maybe even Sets too.
Now as I understand it, I could decorate my F#-objects with some attributes to hook up some Json.net functionality (but I don't exactly know how too).
But I had hoped that there is a way to tell RavenDB to serialize - lets say all List<'a> in a certain way (to be exact - just handle them as a IEnumerable/Seq and use List.ofSeq in the constructor)
Is this possible and if yes can you explain exactly how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过提供自己的 JsonConverter 类来修改序列化器,并通过为 Conventions.CustomizeSerializer 函数提供 lambda 将其注册到 RavenDB 序列化器。
You can modify the serializer by providing your own JsonConverter class, and registering that with the RavenDB serializer by providing a lambda for Conventions.CustomizeSerializer function.