Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Domain Modeling, Domain Objects in DDD

I'm really new to DDD and trying to grasp some of the concepts.

Could someone explain me the idea behind Domain Modeling in DDD.

I have already gone through wikipedia explanation: http://en.wikipedia.org/wiki/Domain_model but still seems like there are some gray areas in my understanding.

Based on what I understood, domain modeling involves building a model around the business entities to express their relationships, express the entities that participate in the model etc..

Isn't this something that has been in practice always? in Object Oriented world, you model business entities into classes, objects etc.. and build the software around this.

What I do not understand is the emphasis Domain Modeling gets in DDD. Is it the same object/class modeling that you find in OO world, or is this something new to DDD ? How does it differ from Object Oriented design/modeling?

Your answers are highly appreciated.

like image 201
Eranga Dissanayaka Avatar asked Aug 25 '10 19:08

Eranga Dissanayaka


People also ask

What are domain objects DDD?

Domain-Driven Design(DDD) is a collection of principles and patterns that help developers craft elegant object systems. Properly applied it can lead to software abstractions called domain models. These models encapsulate complex business logic, closing the gap between business reality and code.

What are objects in domain model?

The domain object model is based on the Decision Optimization Center Application Data Model. It provides a simple way to map tables to Java classes, columns to attributes, and foreign keys to bidirectional references.

Is domain model and object model same?

A Domain Model is an Object Model describing the problem domain. They include the domain objects in the problem domain and describe the attributes, behavior and relationships between them.

What are domains in data modeling?

A domain model describes the domain types that an organization allows and their constraints. Using domain data types instead of base data types ensures that you maintain consistency across an organization, and allows reuse of common data type definitions for greater team efficiency.


1 Answers

One distinction is that a "proper" implementation of the Domain Model Pattern in DDD is isolated from cross-cutting concerns.

For example, it contains nothing to do with databases or other persistence. Where it contains validation logic, it is business validation, not "does the name exceed the column length?" validation.

The idea is that the domain model encapsulates "the business" -- in business terms ("ubiquitous language"), to the extent possible -- and exposes relevant aspects of the business to "the program" without acquiescing to the needs of the software.

On the flip side, "the software" is concerned with IO, UI, and the like, but delegates all business logic to the domain model.

In principle, you can wrap your domain model up in an assembly and use it across multiple applications. When business rules change, as they do, you have one very logical place in which to affect the changes (because the model is a 1:1 or nearly-so representation of the relevant aspects of the business and is described in the same terms as the business).

like image 192
Jay Avatar answered Sep 20 '22 19:09

Jay