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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:48:21+00:00 2026-05-24T05:48:21+00:00

Hi I have an SQL Server table as below CREATE TABLE [dbo].[Location]( [LocationUID] [uniqueidentifier]

  • 0

Hi I have an SQL Server table as below

CREATE TABLE [dbo].[Location](
    [LocationUID] [uniqueidentifier] NOT NULL,
    [Code] [char](10) NULL,
    [Type] [char](1) NOT NULL,
    [FullName] [nvarchar](150) NULL,
 CONSTRAINT [PK_Location] PRIMARY KEY CLUSTERED 
(
    [LocationUID] ASC
)
ALTER TABLE [dbo].[Location] ADD  CONSTRAINT [DF_Location_LocationUID]  DEFAULT (newid()) FOR [LocationUID]

I have a C# WCF service in .NET4 using EF4 to insert into the Table location. This is the code that does it

  //create country
                country = new Location()
                {
                    FullName = CountryName,
                    Type = "C",
                    Diaretics = CountryName,
                    Code = CountryCode
                };
                dbContext.AddToLocations(country);
                dbContext.SaveChanges();

But when I run the service the code falls over at dbContext.SaveChanges() with Error

Violation of PRIMARY KEY constraint ‘PK_Location’. Cannot insert duplicate key in object ‘dbo.Location’.
The statement has been terminated.

I thought this is impossible to happen with the way the default value is set on LocationUID field with NewUID() and the configuration of primary key.

Any help would be appreciated

  • 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-24T05:48:21+00:00Added an answer on May 24, 2026 at 5:48 am

    Set the StoreGeneratedPattern to Identity on the GUID PK property.

    Ref:

    • Working with Entity Keys

    • Tip 19 – How to use Optimistic Concurrency with the Entity Framework

    • Using uniqueidentifier SQL column type with Entity framework

    • Entity Framework 4 Primary Key as GUID and autogeneration

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

Sidebar

Related Questions

I have a sql server table: CREATE TABLE [Workflow].[MilestoneDate]( [MilestoneDateId] [int] IDENTITY(1,1) NOT NULL,
I have a Money column in my SQL Server 2008 table. In my below
I have a SQL Server table with 2 columns, Code and CodeDesc. I want
I have a SQL Server table with a CreatedDate field of type DateTimeOffset(2). A
I have a SQL Server 2005 table like this: create table Taxonomy( CategoryId integer
I have a positions table in SQL Server 2008R2 (definition below). In the system
I have below table in SQL server 2008.Please help to get expected output Thanks.
We have a SQL Server table containing Company Name, Address, and Contact name (among
I have a SQL Server table in production that has millions of rows, and
If I have an SQL Server table with a clustered index on a datetime

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.