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 isolated tables or 1: 1.