Questions tagged [bounded-contexts]

Bounded Context is a concept from Domain Driven Design (DDD). It refers to the explicit boundaries in which a model applies such as the team organisation or physical manifestation. It is also used instead of the generic and deprecated tag [context].

Bounded Context is a concept from Domain Driven Design (DDD). It refers to the explicit boundaries in which a model applies such as the team organisation or physical manifestation.

References

See the description of Domain Driven Design.

The main information is under the tag

173 questions
0
votes
1 answer

DDD - Update User Password in one BC, then email password in another BC

In my domain, I have two bounded contexts, one that contains a Employee and the other BC is an email communicator, my Employee is only given a password when they have been approved, and therefore there password is published to them at this point.…
Matt
  • 2,713
  • 5
  • 27
  • 35
0
votes
4 answers

Bounded Context in EntityFramework CodeFirst

I have searched a lot about bounded context and I know it is a pattern in Domain Driven Design, and it is for dividing our large model into smaller models using database context but it makes me a little bit confuse. in fact I don't know what exactly…
0
votes
1 answer

Accessing different bounded context data from saga

I created a saga with NServiceBus that request external service for customer's information and make timeout. After timeout expire that saga check if external service has response. In response I have data of corresponding customers and now I have…
0
votes
1 answer

ddd - Creating and refactoring identity fields of Entities

We are learning DDD and evaluating its use for a system backed by a legacy system & datastore. We have been using Anti-Corruption Layer, Bubble Context and Bounded Context without knowing about them, and this approach seems very practical to us. But…
iesen
  • 65
  • 2
  • 11
-1
votes
1 answer

Microservices: adding a required field to a bounded context that gets its data from a separate bounded context

Suppose you have two bounded contexts (BC1 and BC2) with separate databases. They both contain a User entity that needs to be kept in sync across the bounded contexts. In this case, suppose that we accomplish the synchronization through integration…
user11666795
-1
votes
1 answer

Confusion regarding bounded contexts and interaction between them

I'm trying to implement my first domain driven application, after going through Eric Evan's book on Domain-Driven Design. I'm a bit confused on how to go about this. In my application, a user can purchase a service for getting them certain number of…
-1
votes
1 answer

Doctrine2: Bounded Contexts of the Entity and SINGLE_TABLE inheritance mapping. Kinda confused on am I doing it the right way

Long story short. I use Doctrine's Single Table Inheritance mapping to map three different contexts (classes) of the one common entity: NotActivatedCustomer, DeletedCustomer, and Customer. Also, there is an AbstractCustomer which contains the…
Clark
  • 2,083
  • 6
  • 32
  • 47
-1
votes
1 answer

Identifying bounded contexts for meal planning app

I'm designing meal planner app. I want it to has: typical cookbook with recipes (recipe can be added to cookbook by user, it contains list of ingredients with thier amounts, servings amount, calories amount calculated based on ingredients,…
1 2 3
11
12