Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know it could be bad to use domain models as view models. If my domain model has a property named IsAdmin and I have a Create controller action to create users, someone could alter my form and get it to POST a IsAdmin=true form value, even if I did not expose such a text field in my view. If I'm using model binding then when I committed my domain model, that person would now be an admin. So the solution becomes exposing just the properties I need in the view model and using a tool like AutoMapper to map the property values of my returning view model object to that of my domain model object. But I read that the bind attribute on a class can be used to instruct the Model Binder which properties it should and shouldn't bind. So what really is the reason for making two separate classes (domain model and view model) that essential represent the same thing and then incure overhead in mapping them? Is it more a code organization issue and if so, how am I benefiting?

EDIT

One of the most important reasons I've come across for a View Model that's separate from the Domain Model is the need to implement the MVVM pattern (based on Martin Fowler's PM pattern) for managing complex UIs.

share|improve this question
Check out this question too stackoverflow.com/questions/3094633/… – Nick DeVore Feb 1 '11 at 17:40

3 Answers

up vote 8 down vote accepted

I have found that while my domain model gets me 85% of the way to having the fields I want, it has never covered 100% of the values I want on my view. Especially when it comes to permissions and whether or not a user should have access to certain portions of the view.

The design concept I attempt to follow is to have as little logic in my views as possible. This means I have fields in my view model like "CanViewThisField" or "CanEditThisField." When I first started with MVC I would have my domain model be my view model and I was always running into the scenario where I needed just one or two more fields to make my view less cluttered. I've since gone the View Model/Model Builder route and it has worked wonderfully for me. I don't battle my code any longer but am able to enhance my view model as I need to without affecting the domain model.

share|improve this answer
I agree with making the view less cluttered but couldn't we abstract this type of functionality to the domain model instead of the view model? I said this earlier but couldn't I use a DisplayAddress() function on my domain model which would combine the domain properties like Address, City, State and Zip? The db only maps properties not functions. – enamrik Feb 1 '11 at 20:30
Obviously anything is possible, just depends on which way you want to go. I have my domain model generated for me, so I don't really touch that code. If you're using any kind of ORM, then that is the case. The view model has allowed for the most flexibility for me without compromising performance either. – Nick DeVore Feb 1 '11 at 21:14
Sorry but I did not follow the link you gave until now. I've concluded that deciding whether or not to take the domain-model-view-model route depends on the demands of the domain model. I can see how some of my domain model objects would make use of a view model while some won't (although that might confuse someone - I'll think more about it). Either way, I've got my answer. Thank you everyone! – enamrik Feb 1 '11 at 21:23
I'm not using an ORM now but I will soon. I know I can use a EntityFramework class in a typed view but I'm not sure how I would decorate auto-generated classes with attributes if they will constantly be deleted?!? Thanks for the heads up. – enamrik Feb 1 '11 at 21:28
@enamrik If you need to decorate auto-generated classes, you can use either partial classes or 'buddy classes'. – frennky Feb 1 '11 at 23:18
show 1 more comment

Another good reason to have a ViewModel is paging large sets of data. You could pass the view an array of Person ( Person[] ) but metadata such as the number of pages, the number of the current page, the size of the page would not belong on the Person class.

Therefore a PersonListViewModel would solve this issue.

share|improve this answer

Sometimes you need to display the data in a specific manner (ie, displaying a date in the format mm/dd/yyyy vs. yyyy/mm/dd) and often it is easier to make this property in the view and not in the domain model, where you would (or should) have a mapping to a column in your db.

share|improve this answer
Thank you, that makes sense. But still, couldn't we just make functions on the domain model to do this? Like DisplayAddress() which would combine the domain properties like Address, City, State and Zip? The db only maps properties not functions. Is this idea a violation of some design philosophy? – enamrik Feb 1 '11 at 20:21
In a way, yes. You could do all of this in the domain model if you really wanted to and it would work just the same. However, I've never seen that work very well from a maintenance. Typically, I've seen these kinds of things put into the view model (or whatever presentation model you're using). So really, it is just an organizational issue than anything. :) – Mike Feb 1 '11 at 20:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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