Display Student Record on cshtml page in table using Razor
@model IEnumerable<Britanic_MIS.Models.InvoiceModel>
<table >
<thead>
<tr><th>Roll</th><th>Name</th><th>City</th></tr>
</thead>
<tbody >
@foreach (var item in Model)
{