Is there a way to pass a piece of extra data along with a model to a Partial view?
E.G.
@Html.Partial(\"_SomeTable\", (List)ViewBag.Tabl
You should be able to just put it in the ViewBag and then access it from the ViewBag in the partial view. See this SO answer.