I have a list of Products and this listing has the vendor code, I need to enter the vendor name in that listing.
My Controller:
public ActionResult Index()
{
IEnumerable<Produto> produtos = db.Produto
.Include(p => p.Fornecedor)
.Where(p => p.Ativo == true)
.ToList();
return View(produtos);
}
My View
<table class="table table-striped table-responsive">
<tr>
<th>
Código
</th>
<th>
Código do Fornecedor
</th>
<th>
@* A informação há ser inserida *@
Nome Fantasia
</th>
<th>
Descricão
</th>
<th>
Preco de Venda
</th>
<th>
Quantidade
</th>
<th>
Opções
</th>
</tr>
@foreach (var produto in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => produto.Codigo)
</td>
<td>
@Html.DisplayFor(modelItem => produto.CodigoFornecedor)
</td>
<td>
@Html.DisplayFor(modelItem => produto.Descricao)
</td>
<td>
@Html.DisplayFor(modelItem => produto.PrecoVenda)
</td>
<td>
@Html.DisplayFor(modelItem => produto.Quantidade)
</td>
<td>
<button class="btn btn-default details" data-id="@produto.Codigo"><i class="glyphicon glyphicon-file"></i></button>
<button class="btn btn-danger delete" data-id="@produto.Codigo"><i class="glyphicon glyphicon-trash"></i></button>
<button class="btn btn-primary edit" data-id="@produto.Codigo"><i class="glyphicon glyphicon-edit"></i></button>
<td>
</tr>
}