I'm trying to display multiple tables in DataGridView
, from a database I mapped through the Entity Framework .
Example, person table, address.
I tried to use pessoa.BindingSource
, then comes the address list, but I could not call the {logradouro, cidade, bairro, estado}
The structure that the Person table is using to define the items / data in the table is:
public virtual ICollection<enderecos> enderecos { get; set; }