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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:36:29+00:00 2026-06-09T16:36:29+00:00

I am using an EF code first generated database which provides some seed data,

  • 0

I am using an EF code first generated database which provides some seed data, and imported data from other databases (ten thousands of rows, so it doesn’t make sense to seed in EF). In an effort to streamline the process I figured I could just script the entire database’s data only. So if I ever need to DropCreate (right now we use Migration strategy) my database again I can seed all my data at once.

However, the script generated by SQL Server causes tons of these conflicts:

The INSERT statement conflicted with the FOREIGN KEY constraint…

I can imagine this is because our data is very complex and inserting the data in the wrong order can cause this. Is there some way I can get the .sql script to ignore/turn off all foreign key constraints for the database before populating the tables, but then turn them back on after insertion is complete? There should be no constraint issues once all the data is inserted.

  • 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-09T16:36:31+00:00Added an answer on June 9, 2026 at 4:36 pm

    Yes, you can temporarily disable foreign keys :

    ALTER TABLE MyTable NOCHECK CONSTRAINT FK_MyTable_MyKey
    

    When you reenable the constraint, you should check the constraints to ensure there are no violations, like so (Note the double CHECK CHECK)

    ALTER TABLE [MyTable] WITH CHECK CHECK CONSTRAINT FK_MyTable_MyKey
    

    See this post for a database-level solution.

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

Sidebar

Related Questions

I have an EF code-first generated database. Data manipulation is done using DbContext .
I'm using Entity Framework Code First to generated my database, so I have an
Easier to show by example -- I'm using code-first to construct a database. I
I successfully created database on my local server using Code First, migrated it to
I am using EF Code First to create a database on local .\SQLEXPRESS. Among
I'm using the Code First approach to build the database in this problem. I
I'm using EntityFramework code first with migrations. From the package manager console, I'm running
I have a project in which I am using .nettiers generated code as my
I'm using Code First with EF 5. Currently I have SPs that return just
When defining a string in a class using Code First, the default for the

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.