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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:25:32+00:00 2026-06-15T20:25:32+00:00

I am writing code first Entity Framework app using POCO. Here is simplified version:

  • 0

I am writing code first Entity Framework app using POCO.
Here is simplified version:

I defined this entity:

public class Respondent
{
    [Key]
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    public int RespondentId { get; set; }

    [Display(Name = "Your Name")]
    public string Name { get; set; }
}

This entity is used to create a table:

public class MyContext : DbContext
{
    public DbSet<Respondent> Respondents { get; set; }
}

I also defined a View Model that contains this entity:

public class SurveyModel
{
    public Respondent Respondent { get; set; }
}

Now, in code:

var survey = new SurveyModel();
survey.Respondent = new Respondent();

When I need to write to the DB:

private MyContext db = new MyContext();

// HERE, after this line, SHOULD survey.Respondent.RespondentId be +1 ??
// Or only when I call db.SaveChanges() ??
db.Respondents.Add(survey.Respondent); 

At this moment survey.Respondent.RespondentId must be increased by 1 since it is defined as IDENTITY using the corresponding attribute.

But it doesn’t happen.
Please advice what I am doing wrong?
Thank you.

  • 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-06-15T20:25:34+00:00Added an answer on June 15, 2026 at 8:25 pm

    You need to call db.SaveChanges() in order for it to be saved to the database.

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

Sidebar

Related Questions

I'm writing an ASP.net MVC3 application using Entity Framework Code First and SqlCe4. I
I'm writing a simple first app using Winforms, C#, VS2010, and Entity Framework. Basically,
this is my first question here. Writing some code, i receive this error from
I'm having trouble mapping two entities together with Entity Framework CTP5 using Code First
I am writing my project using Entity Framework 4.0 (Model first). At the beginning
I'm developing a web application using ASP.NET MVC 3 and Entity Framework Code First
I'm writing a query using Linq to Entities and Entity Framework. My app uses
I'm currently writing a billing application using EF 5 Code First, and I'm running
I got this strange problem while writing code for an exercise. First when I
I am writing my first WPF application. I have also installed Entity Framework (EF)

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.