@model IEnumerable @{ ViewBag.Title = "Blog_Post_Answers"; }

Blog_Post_Answers

@Html.ActionLink("Create New", "Create")

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.parent_id) @Html.DisplayNameFor(model => model.reply)
@Html.DisplayFor(modelItem => item.parent_id) @Html.DisplayFor(modelItem => item.reply) @Html.ActionLink("Edit", "Edit", new { id = item.id }) | @Html.ActionLink("Details", "Details", new { id = item.id }) | @Html.ActionLink("Delete", "Delete", new { id = item.id })