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 can get even clever as shown here by Craig Stuntz
Html.RenderPartial("SomePartialView", null, new ViewDataDictionary(new ViewDataDictionary() { {"SomeDisplayParameter", true }}) { Model = MyModelObject });