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 ...
3
votes
2answers
256 views

Can DTO's have nested DTO's?

I have the following domain model: public class Playlist { public long Id { get; set; } public string Title { get; set; } public virtual ICollection<Song> Songs { get; set; } } ...
3
votes
2answers
119 views

Should the properties in Data Transfer Object expand the foreign keys or simply expose their primary keys

I have an EmployeeDTO that respresents an Employee record in the database. The Employee table has a relationship to a Department and a 1-to-many relationship to Permission. In my entities, these ...
3
votes
2answers
240 views

Using DTOs and BOs

One area of question for me about DTOs/BOs is about when to pass/return the DTOs and when to pass/return the BOs. My gut reaction tells me to always map NHibernate to the DTOs, not BOs, and always ...
2
votes
2answers
45 views

Is a Data Transfer Object same as Value Object?

Is a Data Transfer Object same as Value Object or they are different? If they are different then where should we use a DTO and where should we use a VO? The programming language we are talking about ...
2
votes
4answers
172 views

Difference between Value Object pattern and Data Transfer pattern

In which scenario can I use those design patterns in n-tier architecture?
2
votes
3answers
816 views

what is a good pattern for converting between hibernate entities and data transfer objects?

I have had similar questions and concerns as to how to convert between Hibernate entities and data transfer objects to be returned by a web service as are discussed in this question: Is using data ...
2
votes
1answer
99 views

business object, on the wire object and calculator - which is best

i see this pattern over and over again and wanted to get opinions: Option 1: On the wire object and Business object composition: On the wire object - the data that is serialized and sent back ...
0
votes
1answer
57 views

Should Transfer Object always reflect the entire DB row entry?

I've got a question on the transfer object in DAO pattern. Let's say you have a USER table, and there are 20 fields in this table. In the business logic, I notice that I may need field 1 to field 3 in ...
0
votes
0answers
63 views

Alternative names for the “Change Set”, “Simple Entities”, and “Self-Tracking Entities” data transfer patterns?

This article on n-tier application patterns describes different ways of getting data across the wire between your middle tier and your client. It names these patterns: Change Set -- e.g. sending ...
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 ...
0
votes
2answers
501 views

DTO pattern vs Memento pattern

What are the differences between DTO pattern(by Fowler) and Memento pattern(by GoF) in motivation and implementation aspect? Can it be the same classes? If yes, how can I name them (xxxDTO or ...