0
I’m trying to display several tables on DataGridView
, from a database that is Entity Framework.
Example, person table, address.
I tried to use pessoa.BindingSource
, then comes the address list, but I could not call the types of addresses {logradouro, cidade, bairro, estado}
The structure the Person table is using to define the items/table data is:
public virtual ICollection<enderecos> enderecos { get; set; }
You must create a new object containing the / column attributes that must be displayed in Gridview to expose a "Tabular"
– Leandro Angelo