JOliver EventStore - 如何访问所有存储的事件?

发布于 11-05 19:01 字数 262 浏览 4 评论 0原文

如何访问 EventStore 中所有存储的事件以重建我的读取模型?

问题 J Oliver EventStore V2 提到了一个名为 GetFrom 的方法。 0个问题,但我在Wireup返回的接口“IStoreEvents”上找不到这个方法。

How can I access all stored events in the EventStore to rebuild my read models?

A method called GetFrom is mentioned at question J Oliver EventStore V2.0 questions, but I cannot find this method on the interface "IStoreEvents" which is returned from Wireup.

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

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

发布评论

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

评论(1

残龙傲雪2024-11-12 19:01:12

该方法是 IPersistStreams 接口的一部分,而不是 IStoreEvents 接口的一部分。 API 需要稍微改进以适应这一点。我刚刚向 IStoreEvents 添加了一个名为 GetFrom(DateTime started) 的方法,该方法返回 IEnumerable

https://github.com/joliver/EventStore/commit/1a039073df20fba11562c3c1a872180c225122c9

That method is a part of the IPersistStreams interface and not the IStoreEvents interface. The API needs to be refined slightly to accommodate that. I have just added a method to IStoreEvents called GetFrom(DateTime started) that returns IEnumerable<Commit>:

https://github.com/joliver/EventStore/commit/1a039073df20fba11562c3c1a872180c225122c9

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