vote up 5 vote down star
5

I'm basing this question on Fowler PoEAA. Given your familiarity with this text, aren't the ViewModels used in ASP.NET MVC the same as DTOs? Why or why not? Thank you.

flag

3 Answers

vote up 7 vote down check

They serve a similar purpose (marshalling data for another layer of the application) but they do it differently and for different reasons.

The purpose of a DTO is generally to reduce the number of calls between tiers of the application, especially when those calls are expensive. The purpose of a ViewModel is mainly separation of concerns - decoupling the View from the implementation details of the Model.

DTO's don't have any behaviour. ViewModels often contain logic pushed back from the view, and (especially in ASP.NET MVC) behaviour to help out with pushing data back to the Model on a user's response.

DTO's are serializable. ViewModels are not necessarily.

link|flag
That's an excellent explanation! Up until now the only view models I had seen only had getters and setters so I was like: wow that's so much like a DTO. Thanks for clearing this up for me. – mkelley33 Sep 16 at 11:48
Great explanation. – Guy Sep 16 at 18:56
vote up 3 vote down

The purpose is different:

  • DTO's are used to transfer data
  • ViewModels are used to show data to an end user.

So normally ViewModels contain the presentation data, witch is in a lot of cases similar to what is in a DTO, but with some differences. Think of representation of enums, localization, currency, date formats, ... . This is because normally there should be no logic in your view.

link|flag
vote up 3 vote down

DTOs in MVVM and MVP are usually Very Dumb Objects and are basically just a bunch of property setters and getters. ViewModels on the other hand can have some behaviour.

A practical positive side effect of having DTOs is allow easier serialization. If you have a rather complex object in, say C#, you will often find yourself having to selectively turn things off that you don't want serialized. This can get rather ugly and DTOs simplify this process.

link|flag
+1, the key difference is that DTOs are stupid (and thus trivially serializable, which is their job), and ViewModels can contain logic that would have otherwise gone into your view (which is their job). – Iain Galloway Sep 17 at 8:22

Your Answer

Get an OpenID
or

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