<table class="table table-hover table-bordered">
<thead>
<tr>
<th>Referencia</th>
<th>Nombre producto</th>
<th>Descripción del producto.</th>
<th>Categoria</th>
</tr>
</thead>
<tbody>
@foreach(var product in products)
{
<tr>
<td>@product.ProductId</td>
<td>@product.ProductName</td>
<td>@product.ProductDescription</td>
<td>@product.CategoryId</td>
</tr>
}
</tbody>
</table>```
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?