I'm still relatively new to MVC 3. I need to pass data from my @Html.Action methods through the controller to a partial view.So here is my flow.I'll call @Html.Action like this:\[code\]@Html.Action("SidebarMain", "Home", new List<int>(new int[] {1, 2, 3}))\[/code\]Then it will hit my Controller. Here is my method in my Home Controller:\[code\]public ActionResult SidebarMain(List<int> items){ return View(items);}\[/code\]Then my Partial View should be able to access the data like so:\[code\]@model List<int>@{ ViewBag.Title = "SidebarMain"; Layout = null;}<div>@foreach (int item in Model){ <div>@item</div>}</div>\[/code\]BUT: I'm getting a null exception for the Model, meaning It's not passing through.