renderpartial con modelo nulo pasa el tipo incorrecto
Tengo una pagina: <%@ Page Inherits="System.Web.Mvc.View<DTOSearchResults>" %> Y sobre esto, lo siguiente: <% Html.RenderPartial("TaskList", Model.Tasks); %> Aquí está el objeto DTO: public class DTOSearchResults { public string SearchTerm { get; set; } public IEnumerable<Task> Tasks { get; set; } y aquí está el parcial: <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Task>>" %> Cuando …