I have the following controller action:
[ChildActionOnly] public virtual PartialViewResult ListActions(int id) { var actions = meetingActionRepository.GetAll
Like this:
@Html.Action(MVC.MeetingActions.ListActions(Model.MeetingId))
or if you insist on RenderAction like this:
RenderAction
@{Html.RenderAction(MVC.MeetingActions.ListActions(Model.MeetingId));}
Personally I prefer the first, makes fewer keystrokes.