@model IEnumerable @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_AppLayout.cshtml"; }

Index

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

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