I got a view that inherits : System.Web.Mvc.ViewPage<IEnumerable<MyProjects.Models.MyAccountWrapper>>
In this view I list data about the object MyAccountWrapper. This object contains a list of Account. Like this MyAccountWrapper.Accounts
What I would like in this view is to be able to create an account.
So I Try <% Html.RenderPartial("../Account/Create"); %>
But I got error about is not the good model. How can I deal with that ?