JOliver 的 EventStore:使用 ServiceStack 序列化程序时无法读取事件

发布于 2024-11-29 06:13:12 字数 660 浏览 3 评论 0原文

使用 ServiceStack 时,EventMessage.Body 不会反序列化回原始对象。相反,EventMessage.Body 是一个 JSON 字符串。

重现:

  1. 打开 EventStore 项目并导航到 EventStore.Example 项目
  2. 将 EventStore.Serialization.Json 引用替换为对 EventStore.Serialization.ServiceStack 的项目引用
  3. 关闭 EventStore.Example 项目上的程序集签名
  4. 将 MainProgram.WireupEventStore 更改为 .UsingServiceStackJsonSerialization()
  5. 在 MainProgram.Main() 末尾附近添加以下代码:

-

var stream = store.OpenStream(StreamId, 0, int.MaxValue);
var myFirstEvent = (SomeDomainEvent) (stream.CommittedEvents.First().Body);
Console.Out.WriteLine("MyFirstEvent.Value=" + myFirstEvent.Value);

EventMessage.Body isn't deserialized back into the original object when using ServiceStack. Instead EventMessage.Body is a JSON string.

To reproduce:

  1. Open the EventStore project and navigate to the EventStore.Example project
  2. Replace the EventStore.Serialization.Json references with project references to EventStore.Serialization.ServiceStack
  3. Turn off assembly signing on EventStore.Example project
  4. Change MainProgram.WireupEventStore to .UsingServiceStackJsonSerialization()
  5. Add the following code near the end of MainProgram.Main():

-

var stream = store.OpenStream(StreamId, 0, int.MaxValue);
var myFirstEvent = (SomeDomainEvent) (stream.CommittedEvents.First().Body);
Console.Out.WriteLine("MyFirstEvent.Value=" + myFirstEvent.Value);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清晰传感 2024-12-06 06:13:12

如果它是一个字符串并且您期望 SomeDomainEvent 您可以使用 ServiceStack 的 FromJson 扩展方法,即:

var myFirstEvent = stream.CommittedEvents.First().Body.FromJson<SomeDomainEvent>();
Console.Out.WriteLine("MyFirstEvent.Value=" + myFirstEvent.Value);

If it's a string and you're expecting SomeDomainEvent you could use ServiceStack's FromJson Extension method, i.e:

var myFirstEvent = stream.CommittedEvents.First().Body.FromJson<SomeDomainEvent>();
Console.Out.WriteLine("MyFirstEvent.Value=" + myFirstEvent.Value);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文