I have a Winforms application using EF4 database 1st approach (having .edmx file for data access), now i need a bidirectional dataviewgrid which enables me to show, modify, delete and add columns to the database table, showing the data seems to be easy and can be done using the wizard alone, but to write data back into the database is the complex part, i found lots of threads regarding this issue but non of them was envolving the EF4 components to access the data (if possible at all), the most examples use a datase / datasource / bindingnavigator /bindingcontext and more confusing stuff.
the Question is do i really need all these components? or can i use my object model to do this?
It would be great if anyone can provide some clarification on how all these objects work together, any good links or small code parts are welcome too.
Thanks in advance