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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T20:24:41+00:00 2026-06-04T20:24:41+00:00

I created a simple MVC3 project just like the Music Store sample. Everything worked

  • 0

I created a simple MVC3 project just like the Music Store sample. Everything worked just fine. It was then time to port the database to a GoDaddy server and now I can’t delete items from the database.

This is the error:

The DELETE statement conflicted with the REFERENCE constraint \”Captions_Item_Captions\”. The conflict occurred in database \”mattymattmofo\”, table \”dbo.Captions\”, column ‘Item_ItemId’.\r\nThe statement has been terminated.

    //
    // POST: /NavigationManager/Delete/5

    [Authorize(Roles = "Administrator")]
    [HttpPost, ActionName("Delete")]
    public ActionResult DeleteConfirmed(int id)
    {
        Item item = db.Items.Find(id);
        db.Items.Remove(item);
        db.SaveChanges();
        return RedirectToAction("Index");
    }

Can anyone please help?

  • 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-04T20:24:43+00:00Added an answer on June 4, 2026 at 8:24 pm

    In your database Items (parent table) is linked with Captions (child table) by foreing key. That means when you are removing a row from Items table there still might be a connection to this row in Captions table. So constraint is generated to preserve database integrity. You could do two things to resolve this:

    1. Remove constraint – not recommended and bad practice
    2. Update constraint with Delete Rule. You have following choices: No Action, Cascade, Set Null, Set Default.

    Right now your constraint delete rule is probably set to No Action and that’s why you are having this error.

    You can set Delete Rule in Management Studio by right clicking on constraint (in Keys folder) -> Modify -> extend INSERT And UPDATE Spcecification -> Delete Rule.

    Or by T-SQL script. There are many examples on how to do it.

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

Sidebar

Related Questions

I created a new MVC3 project, hit F5, saw the sample page. Then I
I just created a sample MVC3 application to learn validation. It is using DataAnnotations.
Fairly new to MVC3 and I am doing a simple project for testing purposes.
I am new in spring mvc3,and I am trying to create a simple project
I have created a sample MVC3 application for BookShop. I have a create action.
I am working on a Facebook canvas application. I created a sample project using
I have created a simple MVC3 web site and I want to limit access
I have created a simple application using MVC3 and the site is based on
I have created a sample project using ASP.NET MVC 3 Web Application (Razor) template.
I'm using C#.NET MVC3 (Razor) to create a simple form. But in that form

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.