the entity structure plays the role of ORM between the underlying data source and the user interface controls, I wonder if we still need to use bindingsource on top of EF?
eg. can i just snap
datagridview.DataSource = entity.getdata();
instead
bindingsource.DataSource = entity.etdata();
this.datagridview.DataSource = this.bindingsource;
Kiddo source
share