2
I have a listing of Products and this listing has the supplier code, I need to enter the name of the supplier in this 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>
}
Thanks, simplifying so became much easier, I just did not understand how it will be View, I will update my question with my view for you help me and also because my question took a different path.
– user31040
@J.C.Galhardi See if you agree.
– Leonel Sanches da Silva
Simple and objective. Mine helped a lot.
– user31040