1
How do I include the IdCategoria
in addition to the category name in the Console of the first FOREACH
?
var lst = from p in BDProduto.produtos
join c in BDProduto.categorias
on p.IdCategoria equals c.IdCategoria
orderby p.Produto
group p by c.Categoria;
foreach (var grupo in lst)
{
Console.WriteLine("Categoria: {0}, Itens: {1}", grupo.Key, grupo.Count());
foreach (var prod in grupo)
{
Console.WriteLine("\t\tID: {0}, Produto: {1}", prod.IdProduto, prod.Produto);
}
}
Thanks Gypsy, it worked out! How would she look using method syntax?
– Kelly Soares
@Kellysoares I updated the answer.
– Leonel Sanches da Silva