0
votes
3answers
76 views

Which objects are responsible for maintaining references between aggregates?

Suppose I have one aggregate, Ticket. A Ticket will have one assigned Department and one or more assigned Employee. When instantiating a Ticket, should a TicketFactory be responsible for ensuring ...
0
votes
2answers
434 views

Domain driven design concepts

I'm having some trouble with a few concepts in an application I am building using domain driven design. I have the following layers: Application Domain Infrastructure So, let's assume I have ...
6
votes
4answers
1k views

Where to convert a DTO to ViewModel?

I've inherited an MVC2 project using a pretty standard and decently well kept DDD pattern. I've been doing a lot of reading on the whole DTO/ViewModel debate as well. Currently our DTOs are often ...
2
votes
1answer
246 views

JPA model validation and transaction handling

I'm currently refactoring an application that already uses JPA but the JPA EnitytManager (and the transactions) are currently scoped to the DAO layer. There is also a repository layer and a service ...
4
votes
2answers
185 views

Domain Driven Design - where does data parsing belong

In this application I'm developing, the domain revolves around, say, electrical appliances. There are several specialized versions of this entity. Appliances can be submitted to the application, and ...
3
votes
2answers
374 views

What's the intent of the Rollback method in the Unit of Work pattern?

As I understand it, a UnitOfWork class is meant to represent the concept of a business transaction in the domain. It's not directly supposed to represent a database transaction, which is a detail of ...
0
votes
2answers
317 views

Should I abstract the configuration of an IOC container away from the UI?

Our team has been building a DDD app that has a strongly defined application service layer that is built as the "API" of the system. It handles pulling everything together from the domain and ...
0
votes
2answers
229 views

Persistence encapsulated via the domain, or persistence via the Repository?

If my Domain Model is not supposed to know/care about the Repository, then how does some behaviour like .UpdateOrder(...), that encapsulates a CRUD-Update, interface with the Repository? Through a ...
49
votes
3answers
10k views

How to map View Model back to Domain Model in a POST action?

Every article found in the Internet on using ViewModels and utilizing Automapper gives the guidelines of the "Controller -> View" direction mapping. You take a domain model along with all Select ...
0
votes
0answers
52 views

Which validation tags are appropriate for the model?

For proper separation of concerns on a domain/business assembly/layer it seems to me that a good practice would be to go ahead and system.ComponentModel.DataAnnotations mark up my fields in the domain ...
3
votes
3answers
587 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
1answer
478 views

Where can I find information on Authentication and Authorization in the context of Domain Driven Design?

I'm trying to do things the DDD (domain driven design) way. And boy do I struggle. In all books I read, Authentication is of no concern and not mentioned! I've written my own Authentication and ...
6
votes
3answers
507 views

Domain Driven Design, SOC, and entity identification

I've been trying to wrap my mind around DDD and how it can relate to MVC, but I'm having trouble with regards to entity identification. In particular, I'm trying to maintain strict separation between ...