Hello
I'm using the GridDataControl and set an entity collection as the item source.
DataEntities context = new DataEntities();
CustomDataGridDataControl.ItemsSource = context.CustomData;
The mapping names were done in xaml.
The data appears in the GridDataControl, however when the cells are edited, it isn't reflected in the database, how do I do a two-way binding in this situation?
Thank you in advanced.