I have an application that manages the Distributor and its Products. I want to list only the products of the Distributor that I have selected, but in the case everything is appearing.
I tried to do this:
public ActionResult ListarProdutosDistribuidoras(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
Produto produto = db.Produtos.Find(id);
if (produto == null)
{
return HttpNotFound();
}
var produtos = db.Produtos.Include(p => p.Pessoa.PessoaID);
return View(produtos.ToList());
}