bounded-contexts

Bounded Contexts in DDD with CQRS. Sharing Aggregates/Entities. Possible?

孤街醉人 提交于 2019-12-01 07:32:56
I found this code sample. https://code.google.com/p/ddd-cqrs-sample/ Seems very complete and well organized. Not a "framework", just a sample project with a very granular and explicit ways to do things. BUT, incomplete. And this brings some doubts. They are good at answering questions thou. Check their google group at https://groups.google.com/forum/#!forum/ddd-cqrs-sample OK. Thing is that they have Client in the SALES BC and Customer/Leads in the CRM BC. I think we all agree is pointing at the same "person". Let's say that in the sales funnel, the person starts as a Lead, then becomes a

Bounded Contexts in DDD with CQRS. Sharing Aggregates/Entities. Possible?

你说的曾经没有我的故事 提交于 2019-12-01 06:02:59
问题 I found this code sample. https://code.google.com/p/ddd-cqrs-sample/ Seems very complete and well organized. Not a "framework", just a sample project with a very granular and explicit ways to do things. BUT, incomplete. And this brings some doubts. They are good at answering questions thou. Check their google group at https://groups.google.com/forum/#!forum/ddd-cqrs-sample OK. Thing is that they have Client in the SALES BC and Customer/Leads in the CRM BC. I think we all agree is pointing at

Communicating between two Bounded Contexts in DDD

落花浮王杯 提交于 2019-11-27 00:33:17
I have few different Bounded Contexts in the domain. The validation of a CRUD operation is built in each Bounded Context. For example, I can create an entity called GAME only if the person creating it is a Group Leader . I have two Bounded Contexts (BC) in this example. One is the Game BC and the other is the User BC . To solve the problem, in the Game BC , I have to make a domain service call like IsGroupLeader() to the User BC before proceeding on creating the Game. I don't think this type of communication is recommended by DDD. I can have a User entity also in the Game BC , but I don't want

Communicating between two Bounded Contexts in DDD

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-26 10:31:49
问题 I have few different Bounded Contexts in the domain. The validation of a CRUD operation is built in each Bounded Context. For example, I can create an entity called GAME only if the person creating it is a Group Leader . I have two Bounded Contexts (BC) in this example. One is the Game BC and the other is the User BC . To solve the problem, in the Game BC , I have to make a domain service call like IsGroupLeader() to the User BC before proceeding on creating the Game. I don\'t think this type