I have registered my products at a particular restaurant. Being Restaurant (1) and Products (N), I have several products registered in a restaurant.
How do I list these products for each restaurant?
This is the default Action:
public ActionResult Cardapio()
{
return View(db.Produtos.ToList());
}