Tagged Questions

31
votes
11answers
2k views

Why should I isolate my domain entities from my presentation layer?

One part of domain-driven design that there doesn't seem to be a lot of detail on, is how and why you should isolate your domain model from your interface. I'm trying to convince my colleagues that ...
18
votes
3answers
2k views

Domain Driven Design: Domain Service, Application Service

Can someone explain the difference between domain and application services by providing some examples? And, if a service is a domain service, would I put the actual implementation of this service ...
17
votes
12answers
3k views

Are there any open source projects using DDD (Domain Driven Design)?

I'm trying to understand the concepts behind DDD, but I find it hard to understand just by reading books as they tend to discuss the topic in a rather abstract way. I would like to see some good ...
12
votes
5answers
480 views

Repository, Pipeline, business logic and domain model - how do I fit these together?

I'm designing N-tier application and I came across a difficulty which you might have a solution to. Presentation layer is MVC. My ORM is carried out using LinqToSQL - it's a seperate project which ...
10
votes
1answer
681 views

Alternatives to many-to-many relationships with CQRS

How do we model classic many-to-many relationships with CQRS/DDD? I know that both DDD and CQRS implementations and solutions tend to be domain-specific, so it may be difficult to come up with a ...
10
votes
6answers
887 views

Design Methodology: use case driven vs. domain driven

Just for discussion, to me it seems that 2 different terminologies actually are saying the same thing. Is there any tangible differences between this 2 design approaches?
8
votes
4answers
284 views

How to convey the importance/role of application architecture to business heads & junior developers

This question is subjective and can reasonably only be answered by those seasoned developers with leadership experience and management personnel with a sound technical proficiency. For the past year ...
8
votes
2answers
3k views

Best practice for DAO pattern?

I've seen a lot of codes use a service-dao pattern , I don't know the origin of this pattern . It force the front layer call service , then delegates some of the service task to dao. I want to ask : ...
8
votes
8answers
788 views

If you are forced to use an Anemic domain model, where do you put your business logic and calculated fields?

Our current O/RM tool does not really allow for rich domain models, so we are forced to utilize anemic (DTO) entities everywhere. This has worked fine, but I continue to struggle with where to put ...
7
votes
5answers
175 views

Composition over Inheritance - where do extra properties go?

Take this following code from an example HR system. The user has the ability to log an absence and can be of various types including holiday and sickness. This would be a domain model over an ORM such ...
7
votes
4answers
463 views

C# Domain Model + repository: Where to put code that loads an entity

I have a model class which is loaded from a "GetById" method in my repository class. I now need to add additional properties to this entity, which aren't saved in the database, but are calculated by a ...
7
votes
2answers
480 views

What is the relationship between DDD and the “Onion Architecture”?

What is the relationship between Domain-driven design (DDD) and "The Onion Architecture" of Jeffrey Palermo? Is the Onion Architecture a subset of DDD?
7
votes
1answer
548 views

DDD Repository Awareness of Other Repositories

Is it generally acceptable that one repository can access another repository? Specifically in this case, I have one aggregate root that uses another aggregate root to determine what entities to add. ...
7
votes
4answers
621 views

passing data in an ntier application

How do you pass data to layers in an n-tier application? I have mapped out 3 different methods. A) generic .net objects generic data tables, Hashtables, generic datasets, strings, ints etc... then ...
7
votes
8answers
1k views

DDD: Primary keys (Ids) and ORMs (for example, NHibernate)

Why is it considered OK to have an Id field in the domain entities? I have seen several solutions that provide base class with Id and Id-based GetHashCode/Equals. My understanding of domain model is ...
6
votes
2answers
121 views

Where to put domain logic which needs to fetch data from database

I know that domain logic should be placed into domain objects. But what if my domain logic needs data from the database ? (e.g. checking unique value, computed values.. etc ) I think injecting ...
6
votes
6answers
189 views

What type of result should be returned from the service layer?

Say, for example, that I have a PostsService that creates a post: public class PostsService : IPostsService { public bool Create(Post post) { if(!this.Validate(post)) { ...
6
votes
2answers
351 views

What makes my code DDD (domain-driven design) qualified?

I'm new to DDD and am thinking about using this design technique in my project. However, what strikes me about DDD is that how basic the idea is. Unlike other design techniques such as MVC and TDD, ...
6
votes
3answers
4k views

DDD - Dependecies between domain model, services and repositories

Just wanted to know how others have layered their architecture. Say i have my layers as follows: Domain Layer --Product --ProductService (Should the imp go into this layer?) --IProductService ...
5
votes
2answers
107 views

How to get correct user stories in BDD? [closed]

We are about to start a new project and our company wants to go with the agile approach of where the business analyst writes user stories and from that we should be able to do BDD to flesh out our ...
5
votes
1answer
114 views

DDD on an enterprise scale?

Looking for suggestions on how to approach this problem and to understand if Domain Driven Design is really the best pattern here. My client is in the process of re-architecting its near-obsolete ...
5
votes
5answers
293 views

DDD / Aggregates in .NET

I've been reading Evans' book on DDD and am thinking about how one should implement aggregates in .NET. Currently, I can only come up with one way; isolating the aggregates in separate class ...
5
votes
5answers
359 views

What is the difference between domain objects, POCOs and entities?

I was under the impression they are all basically the same. Are model objects also the same? Right now, in my architecture, I have: class Person { public string PersonId; public ...
5
votes
4answers
233 views

Confusion between view logic and domain logic in a ASP.NET MVC Web Application

I am getting confused between domain/application logic and User Interface logic. To illustrate what I am trying to nail down, I will describe an imaginary program below for illustration purposes: ...
5
votes
1answer
1k views

DTO DAO POCO BO

Actually i'm pretty confused about this terms and how they relate to each other. A read something about every one of them but i don't uderstant the work flow.. DTO - Data transfer object - object to ...
4
votes
2answers
107 views

Are there any example Rails apps where business logic is kept in separate classes than ActiveRecord?

There's been a recent surge in the Ruby community of blog posts, tweets, and comments on the benefits of using better OO design, and specifically separating business logic from persistence logic. ...
4
votes
4answers
265 views

Concrete examples on why the 'Anemic Domain Model' is considered an anti-pattern

I apologize if this is a duplicate, but I couldn't find any concrete examples on the topic in related questions. After reading Martin Fowler's article on the 'Anemic Domain Model', I'm left wandering ...
4
votes
3answers
223 views

How to create rich domain objects while maintaing persistence ignorance?

First off, I am using web forms without any ORM framework. I have been struggling with how to make my domain objects as "smart" and "rich" as they can be without allowing them access to my service ...
4
votes
3answers
344 views

Is Domain Driven Design right for my project?

I have been reading this ebook about DDD (http://thinkddd.com/assets/2/Domain_Driven_Design_-_Step_by_Step.pdf) and it says that only highly complex systems are suited for DDD architecture. This ...
4
votes
5answers
217 views

POCOs != Domain Objects?

As I'm working through my first large project with an ORM, I've started to realize that the ORM will be a big impediment to creating domain objects that are expressive and that convey intent. That ...
4
votes
2answers
502 views

Typical .NET DDD architecture vs Django/Rails practices

I've accustomed to all typical domain driven design practices that are prevalent in most of publications and blogs concerned with modern .net programming. It surprised me, hence, that when I spoke ...
4
votes
2answers
159 views

Design approach (Domain driven or Service Driven)

My problem statement is : I want to write design file management (add, copy, delete etc. operations). There are two approach : Service Driven approach Write file VO which contains only file ...
4
votes
1answer
536 views

Applying DDD to Northwind database

I would like to do some exercice and apply DDD to my Domain Model applied to Northwind database. Even if Northwind is an example I imagine that it was done to satisfy some " virtual business" ...
4
votes
2answers
196 views

Modeling loosely coupled domain model

The question doesn't really concerne DDD but would like to know if there is any way to model a loosely coupled domain model. What I mean by that ? I work for a software HR editor and we're planning to ...
4
votes
6answers
500 views

Programming pattern / architectural question

I am currently working on a project where I have a BankAccount entity for some other entity. Each bank account as a reference to a bank entity, an account number and optionally an IBAN. Now since an ...
4
votes
2answers
2k views

DDD, Anti Corruption layer, how-to?

At the moment, we have to build an application which is based on a legacy one. Code for that old application should be thrown away and rewritten, but as it usually goes - instead of rewriting it, we ...
4
votes
4answers
364 views

How to deal with a value object that needs to look up data in the database

I am just starting out with the study of domain driven design and it is quite possible that my understanding of the Entities/Values divide is faulty so if this is so please let me know. From my ...
3
votes
2answers
108 views

Mapping Decorator Pattern in NHibernate

Further to this question: Composition over Inheritance - where do extra properties go? The accepted answer and similar ones answer this nicely. But to take this further, what if the Sales department ...
3
votes
2answers
436 views

Code Generation - Domain/model first (DDD)

I'm looking for a 'complete' solution for code-generation based on DDD or model first approach. Ideally, this would be a separate application or VS plugin that we could use and re-use to generate as ...
3
votes
5answers
139 views

When is domain-driven design adequate?

Most books about DDD talk about aligning the tech to the business. So you have orders and payment business rules and such. What if I write a technological applicaiton. For example if I author a ...
3
votes
2answers
121 views

What's the benefit of using another model with Entity Framework in DDD

When looking at some application designs for DDD, I see that the objectgenerated from the entity framework are only used to access the data store. Once the data is loaded it's mapped to another POCO ...
3
votes
3answers
564 views

MVC DDD: Is it OK to use repositories together with services in the controller?

most of the time in the service code I would have something like this: public SomeService : ISomeService { ISomeRepository someRepository; public Do(int id) { ...
3
votes
7answers
330 views

Is the design notion of layers contrived?

I'm reading through Eric Evans' awesome work, Domain-Driven Design. However, I can't help feeling that the 'layers' model is contrived. To expand on that statement, it seems as if it tries to ...
3
votes
3answers
402 views

Domain Driven Design Layout Question

Im new to the DDD thing. I have a PROFILE class and a PROFILE REPOSITORY CLASS. The PROFILE class contains the following fields -> Id, Description, ImageFilePath So when I add a new Profile, I upload ...
2
votes
3answers
60 views

Is there a difference between ASP.NET N-Layered / DDD architecture and a Window service software architecture? [closed]

I am reading a lot of architecture (N-Layered and DDD) yet most of the articles are about web site architecture and develop mostly windows services. Can the architecture be used the same way?
2
votes
2answers
41 views

What are the differences between 'Find' and 'Get' verbs on methods in the Repository or Data Access Methods?

Whether using the Repository pattern with an Interface or just implementing DataAccess methods in an application, I often see methods with either a 'Get' or 'Find' verb preceding the method ...
2
votes
3answers
82 views

In DDD where to save generated files by user?

I have the following architecture in my project: UI -> Application -> Domain -> Infrastructure (4 tier) I need to allow user to upload a image, where the better place to keep the files generated by ...
2
votes
3answers
82 views

In DDD Architecture where I keep Helpers Class's?

I'm working in a DDD project where contains this layers's: UI, Application, Domain and Infra. Where should live Helpers Class? Update: I'm talking about a Object Dumper Helper for example.
2
votes
2answers
97 views

BL Services: Exception or Method Result?

What is the best way and why? V1: try { var service = IoC.Resolve<IMyBLService>(); service.Do(); } catch(BLException ex) { //Handle Exception } V2: var service = ...
2
votes
1answer
43 views

Guidance on executing queries from UI layer

I'm trying to establish a convention on how to execute queries from our UI (controllers) layer. Here are my three options: Wrap each query into its own query object. (seems to lead to class ...

1 2 3