无法删除主键表

时间:2012-03-21 22:41:32

标签: c# asp.net asp.net-mvc-3 asp.net-mvc-3-areas

朋友们,我有一个名为Console的表,里面包含一个名为ConsoleName的属性,这是该表的ID,两个表的外键名为Game和`Gamer 。我遇到的问题是当我运行应用程序时一切正常并且我可以插入所有正常但是当涉及到删除CONSOLE时我无法从Console表中删除任何记录,因为它给了我以下错误:

Value cannot be null.
Parameter name: entity

我正在使用MVC3 C#

我尝试了以下内容:

[HttpPost, ActionName("Delete")]
    public ActionResult DeleteConfirmed(string id?)
    {            
        ConsoleTBL consoletbl = db.ConsoleTBLs.Find(id?);
        db.ConsoleTBLs.Remove(consoletbl);
        db.SaveChanges();
        return RedirectToAction("Index");
    }

但它不起作用。

如果您需要什么,请告诉我,我会发布您要求的内容

编辑:控制台控制器:

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MvcApplication1.Models;

namespace MvcApplication1.Controllers
{ 
    public class ConsoleController : Controller
    {
        private GameZoneEntities3 db = new GameZoneEntities3();

        //
        // GET: /Console/

        public ViewResult Index()
        {
            return View(db.ConsoleTBLs.ToList());
        }

        //
        // GET: /Console/Details/5

        public ViewResult Details(string id)
        {
            ConsoleTBL consoletbl = db.ConsoleTBLs.Find(id);
            return View(consoletbl);
        }

        //
        // GET: /Console/Create

        public ActionResult Create()
        {
            return View();
        } 

        //
        // POST: /Console/Create

        [HttpPost]
        public ActionResult Create(ConsoleTBL consoletbl)
        {
            if (ModelState.IsValid)
            {
                db.ConsoleTBLs.Add(consoletbl);
                db.SaveChanges();
                return RedirectToAction("Index");  
            }

            return View(consoletbl);
        }

        //
        // GET: /Console/Edit/5

        public ActionResult Edit(string id)
        {
            ConsoleTBL consoletbl = db.ConsoleTBLs.Find(id);
            return View(consoletbl);
        }

        //
        // POST: /Console/Edit/5

        [HttpPost]
        public ActionResult Edit(ConsoleTBL consoletbl)
        {
            if (ModelState.IsValid)
            {
                db.Entry(consoletbl).State = EntityState.Modified;
                db.SaveChanges();
                return RedirectToAction("Index");
            }
            return View(consoletbl);
        }

        //
        // GET: /Console/Delete/5

        public ActionResult Delete(string id)
        {
            ConsoleTBL consoletbl = db.ConsoleTBLs.Find(id);
            return View(consoletbl);
        }

        //
        // POST: /Console/Delete/5

        [HttpPost, ActionName("Delete")]
        public ActionResult DeleteConfirmed(string id)
        {            
            ConsoleTBL consoletbl = db.ConsoleTBLs.Find(id);
            db.ConsoleTBLs.Remove(consoletbl);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        protected override void Dispose(bool disposing)
        {
            db.Dispose();
            base.Dispose(disposing);
        }
    }
}

控制台表的索引页:

@model IEnumerable<MvcApplication1.Models.ConsoleTBL>

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
    <tr>
        <th>
            ConsoleID
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.ConsoleID)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
            @Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
            @Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
        </td>
    </tr>
}

</table>

我已将动作链接上的主键设置为“ConsoleID”,但这不能仅仅告诉您知道我做了什么

2 个答案:

答案 0 :(得分:0)

如果您删除Console,则会发出GameGamer表中的孤立记录(强制执行外键时不允许)。因此,为了删除Console,您必须使用它作为外键删除其他记录,或者设置级联行为以便为您执行此操作。

编辑但是,您发布的错误似乎暗示您缺少参数。对于删除,您可能会有两个名为“删除”的操作,只有一个视图。一个删除操作将是正常页面请求(通常用于确认删除),另一个将是需要回发的操作(您在问题中发布)。

这个过程很可能是这样的

Get /consoles/details/1

点击删除按钮

Get /consoles/delete/1

按确认或确定(这将是表单中的提交按钮)

Post /consoles/delete/1

答案 1 :(得分:0)

您是否在调试模式下运行并进入删除方法?

您是否检查过以确保consoletbl存在?

[HttpPost, ActionName("Delete")]
public ActionResult DeleteConfirmed(string id)
{            
    ConsoleTBL consoletbl = db.ConsoleTBLs.Find(id);

    if( consoletbl != null)
    {
        db.ConsoleTBLs.Remove(consoletbl);
        db.SaveChanges();
    }
    else
    {
        // should probably return an error message
        throw new ArgumentNullException("Could not find a console with the id of " + id);
    }
    return RedirectToAction("Index");
}

如果找不到您传入的ID,则应该抛出异常...

@model IEnumerable<MvcApplication1.Models.ConsoleTBL>

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
    <tr>
        <th>
            ConsoleID
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.ConsoleID)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new {  id=item.ConsoleID}) |
            @Html.ActionLink("Details", "Details", new {  id=item.ConsoleID}) |
            @Html.ActionLink("Delete", "Delete", new {  id=item.ConsoleID})
        </td>
    </tr>
}

</table>

我认为ConsoleID是主要ID,因此我将“PrimaryKey”替换为此属性。  / * * /用于在代码中添加注释,它们之间的任何内容都不会被编译