up vote 48 down vote favorite
13
share [g+] share [fb]

I have a page:

<%@ Page Inherits="System.Web.Mvc.View<DTOSearchResults>" %>

And on it, the following:

<% Html.RenderPartial("TaskList", Model.Tasks); %>

Here is the DTO object:

public class DTOSearchResults
{
    public string SearchTerm { get; set; }
    public IEnumerable<Task> Tasks { get; set; }

and here is the partial:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Task>>" %>

When Model.Tasks is not null, everything works fine. However when its null I get:

The model item passed into the dictionary is of type 'DTOSearchResults' but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[Task]'.

I figured it must not know which overload to use, so I did this (see below) to be explicit, but I still get the same issue!

<% Html.RenderPartial("TaskList", (object)Model.Tasks, null); %>

I know I can work around this by checking for null, or not even passing null, but thats not the point. Why is this happening?

link|improve this question

68% accept rate
I'm having a similar issue maybe the answers given could help you out better than it did me http://stackoverflow.com/questions/626457/strongly-typed-partial-views-mvc-rc1 – Ayo Mar 16 '09 at 13:33
Yeah I read that before posting but it doesn't seem to help, ill have another read – Andrew Bullock Mar 16 '09 at 14:01
feedback

4 Answers

up vote 94 down vote accepted

Andrew I think the problem you are getting is a result of the RenderPartial method using the calling (view)'s model to the partial view when the model you pass is null.. you can get around this odd behavior by doing:

<% Html.RenderPartial("TaskList", Model.Tasks, new ViewDataDictionary()); %>

Does that help?

link|improve this answer
brilliant, thanks – Andrew Bullock Apr 6 '09 at 10:00
Works great, thanks!!! – Jason Dec 1 '09 at 17:37
2  
Still saving people time. I was pulling my hair out over this. – James Gregory Jan 10 '11 at 16:50
1  
I get why they support null model and passing the pages Model but couldn't they have handled that by overloading. @Html.Render("donkeys") is different than @Html.Render("donkeys", couldbenull) – Phil Strong Mar 25 '11 at 17:52
3  
I find this very counterintuitive so I added an "issue", vote on it if you agree: aspnet.codeplex.com/workitem/8872 – pbz Jun 28 '11 at 22:26
show 4 more comments
feedback

@myandmycode's answer is good, but a slightly shorter one would be

<% Html.RenderPartial("TaskList", new ViewDataDictionary(Model.Tasks)); %>

This works because the ViewDataDictionary is the thing that holds the model, and it can accept a model as a constructor parameter. This basically passes an "entire" view data dictionary, which of course only contains the possibly-null model.

link|improve this answer
Passing a null value to the ViewDataDictionary constructor will throw an ArgumentNullException. – jcmcbeth Jul 26 '11 at 20:23
@jcmcbeth: Erm, no, it doesn't... I've used this exact code with nulls successfully. – configurator Jul 27 '11 at 12:55
@jcmcbeth: Are you using new ViewDataDictionary(null)? Because that would pick a different overload, one with a ViewDataDictionary parameter, which probably wouldn't accept nulls. – configurator Jul 27 '11 at 12:56
It would appear that using a ViewBag property causes the wrong constructor to be called. How it takes a dynamic type and assumes it's a ViewDataDictionary over an object doesn't make sense to me, but it appears to be what it is doing. You will have to cast it to an object for it to select the correct constructor. – jcmcbeth Jul 27 '11 at 15:15
1  
@jcmcbeth: Calling it over a dynamic type uses the same as if you've given the actual value; if the value is null, that's the same as calling new ViewDataDictionary(null) which causes the most specific overload to be called. – configurator Jul 28 '11 at 14:17
feedback

It appears that when the property of the Model you're passing in is null MVC intentionally reverts back to the "parent" Model. Apparently the MVC engine interprets a null model value as intent to use the previous one.

Slightly more details here: http://stackoverflow.mobi/question1049027_ASP-NET-MVC--strongly-typed-views--partial-view-parameters-glitch-.aspx

link|improve this answer
feedback

A solution would be to create a HtmlHelper like this:

public static MvcHtmlString Partial<T>(this HtmlHelper htmlHelper, string partialViewName, T model)
{
    ViewDataDictionary viewData = new ViewDataDictionary(htmlHelper.ViewData)
    {
        Model = model
    };
    return PartialExtensions.Partial(htmlHelper, partialViewName, model, viewData);
}

The Partial<T>(...) matched before the Partial(...) so convenient and no ambiguity error when compiling.

Personally I find it difficult to understand the behaviour - seems hard to imagine this as design choice?

link|improve this answer
this is what I did in the end. there aren't many design choices/behaviours in asp.net mvc what make any sense. since abandoned it. helpful to others tho, so have a +1 – Andrew Bullock Nov 30 '11 at 10:06
feedback

Your Answer

 
or
required, but never shown

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