1
I need to do the relationship between tables 1:N and N:N.
Table produto
:
public int id {get; set;}
public string produto {get; set;}
public list<tamanhos> tamanhos {get; set;}
Table tamanhos
:
public int produto_id {get; set;}
public string tamanho {get; set;}
Products can have numerous sizes. How to make a CRUD in Mysql in C# within this scenario? I know how to do all CRUD operations for single tables or 1:1.
What have you tried to do? The way your question is it will be closed.
– Jéf Bueno