I am ddd/cqrs/event sourcing beginner, and I have some conceptual problems.
For example, I want to implement a simple shopping cart, and it have to bounded context: admin and website. Both will talk to a same aggregate: order.
In this case, can I share aggregates cross bounded context? If not, how can I do it in the above example?
Cheers, Ron
Orders
is a BC on its own? – JefClaes