vote up 2 vote down star
4

i made a ViewModel pattern for editing stuff in asp.net mvc

this pattern is usefull when you have to make a form for editing an entity and you have to put on the form some dropdowns for the user to choose some values

public class OrganisationViewModel
{

	//paramterless constructor required, cuz we are gonna get an OrganisationViewModel object from the form in the post save method
    public OrganisationViewModel() : this(new Organisation()) {}

    public OrganisationViewModel(Organisation o)
    {
        Organisation = o;
        Country = new SelectList(LookupFacade.Country.GetAll(), "ID", "Description", CountryKey);  
    }   	
	//that's the Type for whom i create the viewmodel
	public Organisation Organisation { get; set; }

    #region DropDowns
	//for each dropdown i have a int? Key that stores the selected value
    public IEnumerable<SelectListItem> Country { get; set; }

    public int? CountryKey
    {
        get
        {
            if (Organisation.Country != null)
            {
                return Organisation.Country.ID;
            }
            return null;
        }
        set
        {
            if (value.HasValue)
            {
                Organisation.Country = LookupFacade.Country.Get(value.Value);
            }
        }
    } 

    #endregion  	

}

and that's how i use it

 public ViewResult Edit(int id)
    {            
        var model = new OrganisationViewModel(organisationRepository.Get(id));
        return View(model);
    }

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Edit(OrganisationViewModel model)
    {
        organisationRepository.SaveOrUpdate(model.Organisation);
        return RedirectToAction("Index");
    }

and the markup

<p>
            <label for="Name">
                Name:</label>
            <%= Html.Hidden("Organisation.ID", Model.Organisation.ID)%>
            <%= Html.TextBox("Organisation.Name", Model.Organisation.Name)%>
            <%= Html.ValidationMessage("Organisation.Name", "*")%>
        </p>
        <p>
      ...
            <label for="CountryKey">
                Country:</label>
            <%= Html.DropDownList("CountryKey", Model.Country, "please select") %>
            <%= Html.ValidationMessage("CountryKey", "*") %>
        </p>

so tell me what you think about it

flag

i take this ViewModel not as a part of controller but as a part of the view (it's like the logic of the view that takes care that the controller will get back from the view Full objects(Country) instead of ids(CountryID)) – Omu Sep 11 at 17:03

5 Answers

vote up 3 vote down check

There are couple of things that bother me.

  1. The terminology. ViewModel is this case is a simple view data that is populated and later consumed by controller. View knows nothing about controller as ASP.NET MVC infrastructure is responsible for selecting controllers and appropriate actions. Controller handles user interaction. I think it looks more like Passive View than ViewModel (I assume that by ViewModel you mean Model-View-ViewModel pattern).

  2. The details. The controller that populates view data is not supposed to know the details of how the view is implemented. However OrganisationViewModel.Country discloses unnecessary details (SelectListItem is pure view implementation detail). Thus making controller dependent on view implementation details. I think it should be changed to avoid it. Consider using some object that will hold the data for a country.

Hope this helps.

link|flag
OrganisationViewModel is not a part of a controller, it's like a part of the View, and it takes care that the controller will get back from a view a set of objects (Country) instead of some id's (CountryID) – Omu Sep 11 at 17:02
vote up 2 vote down

This looks very similar to the recommended practice in the Wrox Professional ASP.NET MVC book, the first chapter of which is available for free from the above URL.

Starting on page 100 they have a section on ViewData and ViewModels.

When a Controller class decides to render an HTML response back to a client, it is responsible for explicitly passing to the view template all of the data needed to render the response. View templates should never perform any data retrieval or application logic – and should instead limit themselves to only have rendering code that is driven off of the model/data passed to it by the controller.

[...]

When using [the "ViewModel"] pattern we create strongly-typed classes that are optimized for our specific view scenarios, and which expose properties for the dynamic values/content needed by our view templates. Our controller classes can then populate and pass these view-optimized classes to our view template to use. This enables type-safety, compile-time checking, and editor intellisense within view templates.

Taken from "Chapter 1 "Nerd Dinner" from Professional ASP.NET MVC 1.0 written by Rob Connery et al published by Wrox". The original is available at http://tinyurl.com/aspnetmvc

link|flag
+1 I really recommend Professional ASP.NET MVC 1.0. – Iain Galloway Sep 10 at 11:29
This is also how I roll. – John Gietzen Sep 11 at 14:09
vote up 1 vote down

In general, I think it looks good, and it's usually a good idea to create viewmodels for your domain objects.

I haven't looked at every single line of code, but one thing that caught my attention was the constructors of OrganisationViewModel. I'd rewrite it using:

public OrganisationViewModel() : this(new Organisation()) { }

public OrganisationViewModel(Organisation o)
{
  Organisation = o;
  InitCollections();
}

This removes some duplicate code, as you don't have to call InitCollections() in both constructors. Of course, this is just a minor detail, and has nothing to do with the general idea.

link|flag
thank you for this tweak, looks better this way :) – Omu Sep 1 at 18:03
vote up 0 vote down

I really like using the ViewModel pattern to keep as much pollution out of the controller as possible, especially when your ViewModel is doing something complicated (we have several models here doing transformations much more involved than the CountryID -> Country drop-down -> CountryID in your example) this makes it easy to unit-test seperately from your controller.

I don't necessarily agree with Dzmitry about this making the controller dependant on view implementation details. If you're really paranoid, you could implement the factory pattern to provide a IViewModel with a Model property (which your ViewModel implements) so you can reasonably guarantee that your controller is immune to changes in View-layer logic it shouldn't be able to see:-

public interface IViewModel<T>
{
  T Model { get; }
}

and your ViewModel itself:-

public class OrganisationViewModel : IViewModel<Organisation>
{
  /* ... */
}

and your Controller:-

public ViewResult Edit(int id)
{
  IViewModel<Organisation> model =
    OrganisationViewModelFactory.GetEditViewModel(id);
  return View(model);
}

in my personal opinion, that's a bit excessive, but a) it addresses Dzmitry's concern, and b) it can help you unit test (as you can use dependency injection to tinker with your ViewModelFactory at runtime).

link|flag
vote up 0 vote down

We started doing this, but our controllers started becoming monstrous (since our ViewModels were not necessarily mapped 1:1 to our database). To alleviate this, we created Mapper classes that create the ViewModel and then map back to data bound for the database. The controller then just calls the Mapper class methods. Seems to work well.

link|flag

Your Answer

Get an OpenID
or

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