I have a database-first EDMX Datamodel. I'm using the new Microsoft.AspNet.EntityDataSource control for EF6 to bind to DevExpress controls & utilize the rich design-time features. (such as automatic column generation in the aspxgridview, based on the datasource schema)
Using the EF6 DataSource
Then in the GridView Designer, FieldNames aren't populated from the Schema.
In his answer, Rowan Miller stated:
We no longer recommend using the Entity Data Source for new projects
EntityDataSource and Entity Framework 6
... so is there a better Datasource type to use?
What's the proper way to do this type of binding with EF6?