I saw the ViewBag in MVC 3. How's that different than ViewData in MVC 2?
| ||||
|
feedback
|
|
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:
with magic properties:
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. | |||||||||||||||||||||
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. | |||
|
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:
| |||||||||||
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. | |||||
feedback
|