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 ...
12
votes
4answers
7k views

what is Data Transfer Object?

what is a Data Transfer Object? In MVC are the model classes DTO, and if not what are the differences and do we need both?
3
votes
3answers
157 views

Difference between Transfer objects and Domain objects

Could you please explain the difference between Transfer objects and Domain objects in simple terms ? And if u could give a Java example, that would be great..
2
votes
2answers
126 views

DTOs : Several DTO (and Assemblers) for the same resource

I often need, depending on cases, of several DTOs for a same resource. Take the example of photo Albums. Depending of what i want to display, i'll need different data into my DTOs (creation thru a ...
0
votes
1answer
282 views

Should DTOs in a composite DTO reference each other by primary key or by object reference?

There is a recommendation that transfer objects should not contain object references to other transfer objects. Instead, they should use the primary keys of the other transfer objects as foreign key ...