0
I have the following doubt.
Having the MODEL MVC classes:
public class Categoria
{
public int IdCategoria { get; set; }
public string Nome { get; set; }
}
public class Produto
{
public int IdProduto { get; set; }
public string Nome { get; set; }
}
public class Secao
{
public Categoria categoria { get; set; }
public IEnumereble<Produto> produtos { get; set; }
}
How the Create View is done with the model Secao
?
The class Categoria
I was able to set in the view but the IEnumerable<Produto>
couldn’t.
The scenario is that a section should be included with a category and n
products.