What should be modified in this sample to make it work with .edmx
http://labs.infragistics.com/silverlight/lobsamples/2010.3/#/Samples/Grid/Dataediting/GridDeleteRow
I am having code that checks for modified entities etc but the delete stored procedure isnt getting called
Figured out it works Thanks
What would differ if its Entity Framework?
Hi,
For deletion, the xamGrid only calls Remove off of the collection if it's an IList and Remove if it's an IEditableCollectionView.
So, if you're collection isn't connected to your underlying data, then it's up to you to push it back.
-SteveZ
Also I have a button outside of the grid which is supposed to delete so can it be integrated too