The strongly typed SearchViewData has a field called Colors that in it's turn is a ColorViewData.
In my /Colors.mvc/search I populate this viewData.Model.Colors based on the given search criteria.
Then, based on several factors, I render one of a set of user controls that are able to render itself with a ColorViewData.
So I will end up with
<%Html.RenderPartial("~/Views/Color/_ColorList.ascx", ViewData.Model.Colors);%>
This used to work just fine, but since the upgrade to the beta1, my user control always ends up with viewdata = null;
Suggestions?