ASP.NET MVC 3: New ViewModel is dynamic ViewData

ASP.NET MVC 3 introduces new ViewModel property of Controller that you can use to assign different properties to the model of your view. ViewModel is dynamic by type. In this posting I will show you how to use ViewModel property in your ASP.NET MVC applications.

Suppose you have controller for products that has method Details() to show details of product requested by visitor. We want to use dynamic ViewModel to get data to details view.

ASP.NET MVC ViewModel

So, here is our controller that uses dynamic ViewModel.

public ActionResult Details(int productId)
{
   
var
product = _repository.GetProductById(productId);

   
if
(Request.IsAuthenticated)
        ViewModel.VisitorName = HttpContext.User.Identity.Name;
   
else
        ViewModel.VisitorName = "visitor"
;

    ViewModel.ProductName = product.Name;
    ViewModel.ProductUnitPrice = product.UnitPrice;
    ViewModel.ProductDescription = product.Description;

   
// ...

   
return View();
}

And here is the fragment of view that shows product details.

<h2><%= ViewModel.ProductName  %> (<%= ViewModel.ProductPrice  %> EUR)</h2>
<
p>
    <%= ViewModel.ProductDescription  %>
</p
>

User can see besides other stuff the fragment like this.

Product details

Let’s try now what happens when we use good old ViewData instead of ViewModel.

public ActionResult Details(int productId)
{
   
var
product = _repository.GetProductById(productId);

   
if
(Request.IsAuthenticated)
        ViewData[
"VisitorName"
] = HttpContext.User.Identity.Name;
   
else
        ViewData["VisitorName"] = "visitor"
;

    ViewData[
"ProductName"
] = product.Name;
    ViewData[
"ProductUnitPrice"
] = product.UnitPrice;
    ViewData[
"ProductDescription"
] = product.Description;

   
// ...

   
return View();
}

Don’t make any other changes to code. Compile your project and refresh product page. Guess what … the result is same as before! Why should ViewData and ViewModel be synchronized? Think about controller unit test and it should be clear.

Conclusion

ViewModel property of Controller is great addition to ASP.NET MVC and it makes our code and views more readable. Instead of using ViewData or strongly typed views we can use ViewModel to form our model objects dynamically and give them to views.

Gunnar Peipman

Gunnar Peipman is ASP.NET, Azure and SharePoint fan, Estonian Microsoft user group leader, blogger, conference speaker, teacher, and tech maniac. Since 2008 he is Microsoft MVP specialized on ASP.NET.

    8 thoughts on “ASP.NET MVC 3: New ViewModel is dynamic ViewData

    • July 27, 2010 at 6:52 pm
      Permalink

      Hey gunnarpeipman… Thanks to explain about this cool property………..

    • July 28, 2010 at 2:22 pm
      Permalink

      Nice, but these days you should be using <%: instead of <%= :)

    • August 11, 2010 at 1:35 pm
      Permalink

      Really cool article for ViewData and ViewModel difference.

    • November 1, 2010 at 12:52 pm
      Permalink

      I don’t like the use of ViewData at all.
      1) You don’t define what is required.
      2) No compile time errors

      I create a class now i.e. ProductViewModel

      public class ProductViewModel{

      public Product Product {get; set;}
      public decimal Price {get; set;}

      }

      And send this as my view to the model.

      Got this from the NerdDinner sample chapter by ScottGu

    • December 17, 2010 at 10:53 pm
      Permalink

      Thanks! The light just went on!

    • January 5, 2011 at 10:10 pm
      Permalink

      The justification at end is wrong. You cannot always replace strong types with dynamic types and inherit all drawbacks of dynamic programming like performance overhead, intellisense missing etc. It should be used only when dynamic programming makes sense. Given that all code is within our control (and within managed world) we should mostly use correct patterns (like dynamic polymorphism with interfaces) and replace it with dynamic programming. Always remember that Dynamic programming should be the last resort not the first.

    • February 15, 2011 at 7:29 am
      Permalink

      @Rahul. “Dynamic programming should be the last resort not the first”??? Dynamic programming should and probably will be used far more than it is today by most msft devs. It sounds to me like you have gotten the wrong impression of dynamic programming.

    • October 13, 2011 at 1:54 pm
      Permalink

    Leave a Reply

    Your email address will not be published. Required fields are marked *