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

How can i create two aggregates in different bounded contexts?

Question about integrating bounded contexts. For example. I have organization AR in indentity BC. And courier service AR in logistics BC. They must be connected. organization AR consists of: OrganizationId Name TaxCode LegalAddress ... courier…
Yury Golikov
  • 129
  • 1
  • 9
0
votes
1 answer

How to apply DDD to context without explicit domain model

Consider there is a domain for which a bounded context is to be created. However, nothing should be persisted in this domain. Just a purely task-based logic should be there and a hypothetical domain model won't be updated. I see no way to apply…
0
votes
1 answer

DDD bounded context rest api integration

I have a domain in which exist team members that can assign tasks to each other. I have 2 bounded context: TeamBC: Management of the team members and their info. TaskBC: Management of tasks and their assignaments. TeamBC is upstream and TaskBC is…
0
votes
1 answer

DDD - getting information lazily from other contexts

I am implementing a social network using the domain driven design. I have designed the Profile context which contains the userid, userName, profile pic and so on ... in this context the user can change his userName I have also a messaging context…
0
votes
1 answer

Sizing up Microservices using bonded context from DDD

Ive heard allot about sizing up Microservices using bounded context from DDD. Any ideas what this actually means? thanks goaths
0
votes
3 answers

How can I atomically (or at least properly) create User in the system with multiple bounded contexts?

I need to register user in the system. User cannot exist without a Role (and he surely cannot exist without login and password). Administrator is supposed to be able to add new users by selecting role, writing login/password and some user…
Ivan Zyranau
  • 879
  • 2
  • 14
  • 33
0
votes
1 answer

Communication between classes of multiple domain's on same underlying DB table

I have a VS2015 solution with a webUI project and a class lib project which acts as the domain. The class lib holds nothing more then 20 EF DB First generated classes (edmx model) and also 20 repo's which act on these classes. When I need to change…
Kip ei
  • 479
  • 6
  • 20
0
votes
1 answer

Identifying Bounded Context

everytime i think i understand how to recognize bounded context's i realize the waters are still murky. so here goes... i am developing a customer portal that contains the following features: Customers, Users, Announcements, Feedback, Documents, and…
Marco
  • 2,453
  • 3
  • 25
  • 35
0
votes
2 answers

Integration of bounded contexts locally

In "Implementing Domain-Driven Design", Vernon give detailed examples for integrating bounded context with a messaging or REST based solution, it also mention database integration, but I understand it is not a very clean solution to share database…
Jonathan
  • 1,276
  • 10
  • 35
0
votes
1 answer

DDD Conceptual Model to Domain Model with Aggregate Roots

I'm trying to model my domain based on an existing C# WinForm based system I did to improve my learning on DDD, so I've put together a hypothetical conceptual model to simplify matters. The system itself did not have a typical business domain with…
Andez
  • 5,588
  • 20
  • 75
  • 116
0
votes
1 answer

DDD: Domain Events implementation in monolithic application

I've made some small research about Domain Events, and have found few different solutions Udi Dahan solution, which handle events immediately Deferred domain events, which fire off in infrastructure mostly Domain Events which return result …
0
votes
1 answer

Event Sourcing: eventually consistent bounded contexts

I'm finding the answer for a question that how I can keep two bounded contexts eventually consistent, when I am using event sourcing? I mean a situation when I have replicated some values from one context's entity to another context's value object.…
0
votes
2 answers

DDD dealing with 2 domains performing same actions

Not quite sure how to approach this problem regarding DDD. Say you have 2 domains: A Product domain which is responsible for creating new and managing existing Products which a person has created. Product Aggregate Root A Store domain which is…
Shane van Wyk
  • 1,870
  • 1
  • 26
  • 62
0
votes
1 answer

DDD: Storing reference to non-Aggregate Root Entity from different Bounded Context

I'm struggling to understand how to model my problem: A Company can have many Teams. Each Team must have a unique name per Company. Reports for a particular Team must be retrievable, along with a list of all reports for a Company. Just now, I have…
0
votes
1 answer

Correct way to define Bounded Contexts?

I'm trying to practice Domain-Driven Design in a personal project. I have a sample domain that I'm trying to divide in Bounded Contexts. I was almost sure that I knew how to do it, but after having defined them, I started to feel unsure about…
SuperJMN
  • 13,110
  • 16
  • 86
  • 185
1 2 3
11
12