I know DTO is a data transfer object and a BO is a business object. But, what does it actually mean? When should I choose one over the other? From, what I understand DTO is just used to transfer data and doesn't have business logic. Does this mean that a DTO doesn't have any method only properties(getter and setter)? But, it still has properties of a BO. Can someone please explain? Thanks.

link|improve this question

62% accept rate
1  
how about you tell us what you found when you did an internet search yourself? – Mitch Wheat Jan 9 '11 at 1:08
3  
@Mitch Wheat: I have already told what I know. I come to stackoverflow not because I can't find answers on the internet. I come here becaused there are experts who really understand the topic well and they answer questions in a simple and lucid manner. Can you PLEASE let me (and others) know why you have asked this question? – Sandbox Jan 9 '11 at 1:16
@Sandbox : I asked the question because when I do an internet search for those terms, I get the correct answers. – Mitch Wheat Jan 9 '11 at 1:18
@Mitch Wheat: That is true for most questions on SO or related stack exchange sites. You will find an answer on some blog or a forum. It this the first time on SO that someone has asked a question, which cannot be searched on the internet? – Sandbox Jan 9 '11 at 1:23
I am seeing this on SO, that few members with high rep. increasingly like to humilate and drive away members with low rep. – Sandbox Jan 9 '11 at 1:25
show 4 more comments
feedback

1 Answer

up vote 5 down vote accepted

DTO is used to transfer data between layers/tiers. For such purpose it doesn't need any methos and sometimes it even should not have any methods - for example when DTO is exposed over web service.

Business object is clever object which contains data and methods which performs operations (change data) on this object. When you expose BO to upper layer, it can call your object's public methods. Sometimes you don't want this and for that reason you create DTO which only offers data but not methods.

DTO doesn't have to transport all BO data. When you follow strict DTO approach you create specific DTOs for each operation exposed on your business layer. For example if your object has audit data like CreatedBy, ModifiedBy, CreatedDate, etc. and you are creating Update method your incomming DTO (with updated object) doesn't need to have these properties because upper layer cannot modify them - only business logic can.

link|improve this answer
So DTOs are ALWAYS used to communicate from BO layer to Data access layer? – Sandbox Jan 9 '11 at 1:20
No DTO is general concept which can be used between any layers. The most common usage of DTOs is between Presentation and Business layer. Another common usage is between tiers (physical boundary). – Ladislav Mrnka Jan 9 '11 at 1:23
I see that you understand .net (from your previous answers). So, if I am using MVVM pattern in WPF with a 3 tier architecture, then are my VMs DTO? or will I use VM only for display and use DTO to transfer data from VM to Model and Model to my service? – Sandbox Jan 9 '11 at 1:32
I have never used WPF or MVVM so I can't propably answer it. But when you use DTO it has to be defined somewhere and shared between both layers. If VM has some WPF dependency (like special attributes from WPF assemblies or special property implementation for data binding) do you want to have this dependency in your DTOs? – Ladislav Mrnka Jan 9 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.