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 994457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:34:44+00:00 2026-05-16T06:34:44+00:00

I am trying to update a detached POCO w/ EF 4 CTP 4. My

  • 0

I am trying to update a detached POCO w/ EF 4 CTP 4.

My domain class looks like this:

public class User {
  public int Id { get; set; }

  [Required, DisplayName("First Name")]
  public string FirstName { get; set; }

  [Required, DisplayName("Last Name")]
  public string LastName { get; set; }

  [ConcurrencyCheckAttribute, Timestamp]
  public byte[] DataVersion { get; set; }
}

In the repository I have the following:

public void SaveUser(User user) {
  if (user.Id > 0) {
   dbContext.Users.Attach(user);
  }
  else {
   dbContext.Users.Add(user);
  }
  dbContext.SaveChanges();
}

dbContext inherits from DbContext.

I am able to do inserts fine, but the attach doesn’t work. I run Sql Profiler, and no sql is sent for the update.

  • 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-16T06:34:45+00:00Added an answer on May 16, 2026 at 6:34 am

    I got it figured out….

    In the dbContext class I added a method that marks the entity as modified.

    public void MarkAsModified(object entity) {
      base.ObjectContext.ObjectStateManager.ChangeObjectState(entity, EntityState.Modified);
    }
    

    My repository method now looks like this

    public void SaveUser(User user) {
      if (user.Id > 0) {
        dbContext.Users.Attach(user);
        dbContext.MarkAsModified(user);
      }
      else {
        dbContext.Users.Add(user);
      }
    
      dbContext.SaveChanges();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Assuming that I have objects similar to this: public class User { public int
am trying to update my database table that looks like this name | file_name
Trying this: - UPDATE -- SOOORRY! <li><a href=index.php class=first>Home</a></li> <?php if (the_title() == language-translation)
I am trying update text views while this loop is processing. Here is my
When trying to update a subversion working copy from Netbeans, I get the following
I`m trying to update time in datetime field as UPDATE table_name SET col_name=to_DATE('04/02/2012 00:12:00','MM/DD/YYYY
Trying to update to a pointer from a function return. Just for background this
I'm trying to update a table based upon the user id from another table.
I'm trying to update one textfield from another class: I have two classes: @interface
For the last few days I'm trying to properly update my POCO entities. More

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.