foreachループを使用して表示しているコード
@Url.Action("StartJob", "Batch", new { batchName = @Model.BatchInformationList.ElementAt(i-1).JobName })
コントローラーのコード
public PartialViewResult StartJob(string batchName)
{
return this.PartialView(res);
}
反復しているモデルの最後の要素のバッチ名でデータを取得しています