DDD - Bounded Contexts
[#vaughn-ddddis], on 2nd chapter:
The bounded context encompasses the entities that are relevant to that specific 202105200840 DDD - Subdomains[1]. Everything that's essential for that context should lie there. Everything else should be in another bounded context.
Each bounded context has its own 202105192149 DDD - Ubiquitous Language. So we have context-specific, but very precise terms.
A todo list app could be broken down into the following bounded contexts:
- The list context: contains lists, tasks in lists, assignee (users in the users context)
- The user context: contains user data
- The account context: contains billing data
The list context here would be our core domain (see 202105200840 DDD - Subdomains) since it'd be the HEART of the business.
Look into 202105192154 DDD - Interaction with external bounded contexts for implementation tactics and read 202105200838 DDD - Context mapping for a better conceptual grasp around those interactions.
[1]: Although bounded contexts can contain more than 1 subdomain, it's best practice to limit to 1. So one bounded context contains one subdomain and vice-versa. [#vaughn-ddddis]: Vernon, Vaughn. Domain-Driven Design Distilled. Boston: Addison-Wesley, 2016.