开发者

CQRS - Consuming event service

My question is regarding the consuming event services which subscri开发者_运维知识库bes to the event published by commands in CQRS.

Say I have a document generation service which will generate some documents based on certain events, does the document generation service load the data from the domain via an aggregate root? If so, wouldn't the document generation service load data which may have been updated subsequently of the event being received by the generation service? How would you stop that from happening?

I guess I am assuming that the event will only pass the information received by command DTO and passing the whole domain model data to the event feels very wrong.


You really should build your read model from your events, unless you consider your documents a part of the domain (and you would have a CreateDocumentX command)


All i can say is that when you are speaking in cqrs you should describe the issue more deeply to solve or provide help to it properly.

However from what I've read is that you can have persistent storage on your write side, but ensure that you are not reaching out of your aggregate context. Related issue reading-data-from-database-on-write-side-in-cqrs

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜