I have the following question.
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 is the View of Create done with the model Secao
?
The class Categoria
was able to be in the view but IEnumerable<Produto>
could not.
The scenario is that a section should be included with a category and n
products.