Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3425768
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:38:01+00:00 2026-05-18T06:38:01+00:00

I have an ASP .net C# project using a EntityDataSource with a DevExpress aspxGridView

  • 0

I have an ASP .net C# project using a EntityDataSource with a DevExpress aspxGridView and it is working great allowing me to select, update, insert and delete. However I would like to use a custom delete method instead which basically just does an update instead (just setting an active flag to false) rather than a real delete.

I have a feeling I need to use the entitydatasource’s or the grids onrowdeleting event but this is my first project with Entity Framework 4.0 so still finding my feet. I have no idea if I need to create an overrides update method in the edmx code behind file.

Greatly appreciate any help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T06:38:01+00:00Added an answer on May 18, 2026 at 6:38 am

    You can register a handler on the SavingChanges event to perform wat you want.
    something like this:

    public partial class AWEntities{ 
    
    partial void OnContextCreated()
    {
        this.SavingChanges += new EventHandler(context_SavingChanges);// Register the handler for the SavingChanges event.
    }
    
    private static void context_SavingChanges(object sender, EventArgs e)// SavingChanges event handler.
    {
        // Get all in Deleted state
        foreach (ObjectStateEntry entry in
            ((ObjectContext)sender).ObjectStateManager.GetObjectStateEntries(EntityState.Deleted))
        {
            if (entry.Entity.GetType() == typeof(MyType)))
            {
                // do what you want.
            }
        }
    }
    }
    

    http://msdn.microsoft.com/en-us/library/cc716714.aspx

    OR You can map a Stored Procedure to perform your delete the way you want.
    http://learnentityframework.com/LearnEntityFramework/tutorials/using-stored-procedures-for-insert-update-amp-delete-in-an-entity-data-model/

    I like better the second option…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a Web project using Asp.Net MVC, which I'll have to deploy
In visual studio, I have an asp.net 3.5 project that is using MS Enterprise
I am in the start up of a project using ASP.NET MVC and have
I am using ASP.NET Dynamic Data for a project and I have a table
I have an ASP.Net project using AJAX that I am putting on a server
i have a asp.net project and its using jqgrid as the javascript grid. How
I'm working on an ASP.NET project using MVP architecture. We would like to use
I have an ASP.NET MVC project in C# using Forms Authentication and Active Directory
I have a ASP.net (C#) project that is using a three layer architecture. I
I have created a sample project using ASP.NET MVC 3 Web Application (Razor) template.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.