Bounded Context
DRANK

Bounded Context is a central pattern inDomain-Driven Design. DDD deals with large models by dividing them into differentBounded Contextsand being explicit about their interrelationships.DDD is about designing software based on models of the underlying domain. As you try to model a larger domain, it gets progressively harder to build a single unified model. Different groups of people will use subtly different vocabularies in different parts of a large organization. The precision of modeling rapidly runs into this, often leading to a lot of confusion.In the past we were advised to build a unified model of the entire business, but DDD recognizes that we've learned that "total unification of the domain model for a large system will not be feasible or cost-effective". So instead DDD divides up a large system intoBounded Contexts, each of which can have a unified model - essentially a way of structuring multiple canonical models.Bounded Contexts have both unrelated concepts (such as a suppo…

codeproject.com
Related Topics: XML