I saw the ViewBag in MVC 3. How's that different than ViewData in MVC 2?
|
|
|
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. |
|||||||||||||||||||||
|
|
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: (edited 10-8-12) It was suggested I post the source of this info I posted, here is the source: http://www.asp.net/whitepapers/mvc3-release-notes#_Toc2_4
|
|||||||||||||
|
|
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 by using the ViewBag instead of ViewData. |
||||
|
|
|
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. |
|||||||||
|
|
Similarities between ViewBag & ViewData : Helps to maintain data when you move from controller to view. Used to pass data from controller to corresponding view. Short life means value becomes null when redirection occurs. This is because their goal is to provide a way to communicate between controllers and views. It’s a communication mechanism within the server call. Difference between ViewBag & ViewData: ViewData is a dictionary of objects that is derived from ViewDataDictionary class and accessible using strings as keys. ViewBag is a dynamic property that takes advantage of the new dynamic features in C# 4.0. ViewData requires typecasting for complex data type and check for null values to avoid error. ViewBag doesn’t require typecasting for complex data type. |
|||
|
|
