为 RavenDB 中的泛型类型定义全局自定义序列化器

发布于 2024-12-01 01:53:41 字数 304 浏览 1 评论 0原文

您好,我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你另情深 2024-12-08 01:53:41

您可以通过提供自己的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文