我创建了一个简单的 MVC3 项目, 就像音乐存储样本一样。 一切都很好。 然后是时候将数据库移植到 GoDdddy 服务器上, 现在我无法从数据库中删除项目 。
这是错误 :
The DELETE statement conflicted with the REFERENCE constraint "Captions_Item_Captions". The conflict occurred in database "mattymattmofo", table "dbo.Captions", column Item_ItemId . The 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");
}
有人能帮忙吗?