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

The Archive Base Latest Questions

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

I have a single entity that always duplicate a row when it needs to

  • 0

I have a single entity that always duplicate a row when it needs to update:

    protected static Task RegisterToDisc(Task task)
    {         
        try
        {
            using (DataContext context = new DataContext())
            {
                //this will print an actual existing id from the db
                _log.Debug(task.ID);

                context.Tasks.InsertOnSubmit(task);
                context.SubmitChanges();
            }
        }
        catch(Exception e)
        {
           //...
        }
        return task;
    }

When I print the id before the save, it is actually prints out an id that is really exists in the db.

this is the table:

CREATE TABLE [dbo].[TaskSet](
    [ID] [int] IDENTITY(1,1) NOT NULL,
    [Message] [nvarchar](max) NOT NULL,
    [Result] [nvarchar](max) NOT NULL,
    [Status] [int] NOT NULL,
    [Priority] [int] NOT NULL,
    [Name] [nvarchar](max) NOT NULL,
    [DateTimeAsked] [datetime] NOT NULL,
    [DateTimePerfomed] [datetime] NOT NULL,
    [SessionID] [nvarchar](max) NOT NULL,
 CONSTRAINT [PK_TaskSet] PRIMARY KEY CLUSTERED 
(
    [ID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

Edit

The task is comming from the database already, task.ID contains a number that is exists in the database, how come Linq inserts an entity with PK that is not null and in the db already.

in java hibernate you neet to context.insertOrUpdate(task); and it will decide what to do by the primary key.

  • 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-26T05:39:37+00:00Added an answer on May 26, 2026 at 5:39 am

    InsertOnSubmit always marks the object for insertion. if you want to update the object u need to read it from database like

    var objToUpdate = context.Tasks.SingleOrDefault(x=>x.Id == Id);
    objToUpdate.Property1 = "updated value";
    objToUpdate.Property2 = "updated value";
    //do it for all properties that need updating
    context.SubmitChanges();//since the object is tracked by context it will automatically generate sql to reflect update in db
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables that are considered a single entity in my domain model.
I have a single line CEikLabel in my application that needs to scroll text.
I have a BCS model in SharePoint. This model has a single entity that
I just installed the POCO Template for EF4. I have a single entity in
I have an single threaded, embedded application that allocates and deallocates lots and lots
I have a single user java program that I would like to have store
I have a single spool mbox file that was created with evolution, containing a
I have a single Rails 2.2.2 app that I want to 'share' with multiple
On Google App Engine in Python, I have a Visit entity that has a
In this code, I have an Entity Framework 4 model with a single Thing

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.