I have an ASP.net C # project using EntityDataSource with DevExpress aspxGridView and it works great, letting me select, update, insert and delete. However, instead, I would like to use my own delete method, which instead simply performs the update (just setting the active flag to false), rather than the actual removal.
I have the feeling that I need to use an entitydatasource or grid onrowdeleting object, but this is my first project with Entity Framework 4.0 so that I still find my legs. I have no idea if I need to create a method to override updates in the edmx file behind the file.
Feel any help.
source
share