I was calling render partial like this in MVC 1.0:
<% Html.RenderPartial("~/views/shared/categories.ascx", ViewData.Model.Categories); %>
Now after dropping MVC 2.0 .dll's, I am getting the error:
CS1061: 'object' does not contain a definition for 'Categories' and no extension method 'Categories' accepting a first argument of type 'object' could be found (are you missing a using directive or an assembly reference?)
What changed?
Do I have to update my solution or anything going from mvc 1 to 2?