I saw the ViewBag in MVC 3. How's that different than ViewData in MVC 2?

link|improve this question

feedback

4 Answers

up vote 64 down vote accepted

It uses the C# 4.0 dynamic feature. It achieves the same goal as viewdata and should be avoided in favor of using strongly typed view models (the same way as viewdata should be avoided).

So basically it replaces magic strings:

ViewData["Foo"]

with magic properties:

ViewBag.Foo

for which you have no compile time safety.

I continue to blame Microsoft for ever introducing this concept in MVC.

The name of the properties are case sensitive.

link|improve this answer
2  
Pretty much like dictionary in python..... But far more not enough. – user469652 Jan 16 '11 at 13:01
3  
But I have to agree with blaming Microsoft for introducing the concept (not just to MVC but to .Net 4 in general). – Charles Boyung May 13 '11 at 14:24
4  
@Jon, no, you don't get any checking. You get all your errors at runtime. There is no safety. Personally I never use ViewBag/ViewData in a real ASP.NET MVC application. – Darin Dimitrov Sep 2 '11 at 21:58
4  
ViewBag/ViewData do have some some uses where use of a ViewModel would not be an appropriate solution. One major example I come across a lot is in when using EditorFor or DisplayFor. There are overloads that allow you pass values via ViewData/ViewBad so the editor template can then retrieve and use those values. – Stephen M. Redd Oct 14 '11 at 22:28
2  
ViewBag saves time/code. The value of compile time type safety is marginal. The only benefit I see for strong typing is less time spent developing validation. – micahhoover Dec 1 '11 at 16:53
show 7 more comments
feedback

There are some subtle differences that mean you can use ViewData and ViewBag in slightly different ways from the view. One advantage is outlined in this post http://weblogs.asp.net/hajan/archive/2010/12/11/viewbag-dynamic-in-asp-net-mvc-3-rc-2.aspx and shows that casting can be avoided in the example.

link|improve this answer
feedback

Internally ViewBag properties are stored as name/value pairs in the ViewData dictionary.

Note: in most pre-release versions of MVC 3, the ViewBag property was named the ViewModel as noted in this snippet from MVC 3 release notes:

MVC 2 controllers support a ViewData property that enables you to pass data to a view template using a late-bound dictionary API. In MVC 3, you can also use somewhat simpler syntax with the ViewBag property to accomplish the same purpose. For example, instead of writing ViewData["Message"]="text", you can write ViewBag.Message="text". You do not need to define any strongly-typed classes to use the ViewBag property. Because it is a dynamic property, you can instead just get or set properties and it will resolve them dynamically at run time. Internally, ViewBag properties are stored as name/value pairs in the ViewData dictionary. (Note: in most pre-release versions of MVC 3, the ViewBag property was named the ViewModel property.)

link|improve this answer
The question asks the difference between ViewData and ViewBag, not about ViewModel. – Matthew Flaschen Nov 7 '11 at 22:46
Thanks for the heads-up Matthew Flaschen, I had a typo in the response and fixed it, now reads "ViewData" instead of ViewModel which was a mistake. :) – DisplacedGuy Nov 20 '11 at 20:02
Now it's incorrect. Neither was renamed to the other. They both still exist. One is dynamic and supports ViewBag.Message. One uses the old ViewData["Message"] syntax. – Matthew Flaschen Nov 20 '11 at 21:32
Matthew, You are correct. I've revised this so that it is correct. It isn't necessarily the best answer but at least it is now accurate. When I originally posted I wrongly thought the question was about ViewModel – DisplacedGuy Nov 22 '11 at 7:10
+1 But, what source are you quoting from...? Should really provide a link. – Sam May 18 at 14:31
feedback

Can I recommend to you to not use either?

If you want to "send" data to your screen, send a strongly typed object (A.K.A. ViewModel) because it's easier to test.

If you bind to some sort of "Model" and have random "viewbag" or "viewdata" items then it makes automated testing very difficult.

If you are using these consider how you might be able to restructure and just use ViewModels.

link|improve this answer
1  
Ignoring the "compiler is the first unit test" principal how does a statically typed view model make your code more testable than a dynamic type? Whilst the requirement for tests is more important in a dynamically typed solution, if both solutions implement the same number and type of tests you lose nothing. – Daz Lewis Dec 22 '11 at 11:29
feedback

Your Answer

 
or
required, but never shown

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