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

  • SEARCH
  • Home
  • 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 6781787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:39:55+00:00 2026-05-26T16:39:55+00:00

I need to edit my record in database. I don’t think that I’m doing

  • 0

I need to edit my record in database. I don’t think that I’m doing it good enough. I’ve tried make code shorter by dev = newDev; but it is not saving it then.

Code

[HttpPost]
[ValidateInput(false)]
public ActionResult Edit(Dev newDev)
{
    try
    {
        if (TryUpdateModel(newDev) == true)
        {
            var dev = _db.Devs.Where(x => x.ID == newDev.ID).Single();
            dev.Title = newDev.Title;
            dev.Body = newDev.Body;
            dev.Tags = newDev.Tags;
            dev.Image1 = newDev.Image1;
            dev.Image2 = newDev.Image2;
            dev.Image3 = newDev.Image3;
            dev.Image4 = newDev.Image4;
            _db.SubmitChanges();
            return RedirectToAction("");
        }
        else
        {
            return Content("Fail.");
        }
    }
    catch
    {
        return View();
    }
}

Can you help me optimize my code here?

  • 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-26T16:39:55+00:00Added an answer on May 26, 2026 at 4:39 pm

    If you’re using Entity Framework (it looks like it?) then you can’t update entities this way.

    The Entity Framework uses change tracking to understand what changes have happened to an entity. To do this, it keeps a list of the specific instances that are loaded from that context, and what their initial state was, so it can detect what changes have been made to those instances before you call SaveChanges on the context.

    When you assign directly to a reference type, you’re just reseating the reference. You aren’t changing the initial object instance. Existing references to that instance (like the one the Entity Framework keeps internally to keep track of changes) don’t change, and you will end up pointing at different object instances.

    So, just use your code the way you have it now. This is the only way to blindly update every field. If nothing was updated, the Entity Framework’s change tracking should cause SaveChanges to do nothing. If something was updated, it will perform the corresponding SQL to persist the changes to the DB.

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

Sidebar

Related Questions

I need to edit XML files on a small Linux box that we have
How would I best implement an edit-mode for a database record? The record (for
I am in the need to add additional fields to a TDataSet that don't
I have an ms-access database and I need when ever I add a record
I need to record the last login info of a user into the database.
I need to edit the web.config file on a live Sharepoint environment, but I'm
I need to edit (using javascript) an SVG document embedded in an html page.
I need to edit format for JFormatedTextField in a Java program. NetBeans are helping
I need to edit or completely replace outline data (bezier curves) of OpenType fonts.
I need to pack all my js, but need to edit it going into

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.