こんにちは私はConsole
と呼ばれるテーブルを持っていて、その中にConsoleName
という1つの属性が含まれています。これはこのテーブルのIDと、Game
と `Gamerという2つのテーブルの外部キーです。私が抱えている問題は、すべてのアプリケーションが正常に動作し、すべてを正常に挿入することができますが、コンソールを削除することになると、次のエラーが表示されるのでコンソールテーブルからレコードを削除できなくなります。プライマリキーテーブルを削除する
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");
}
しかし、それは動作しません。
してください、あなたは私はあなたが感謝
を求めるものを掲示しなければならない私に教えて何かを必要とする場合EDIT:コンソールコントローラ:コンソールテーブルの
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>
私はactionlinksの主キーを "ConsoleID"に設定しましたが、これはちょうど私が何をしたのかを知らせるためには役に立たなかった
私はそれを試みたので、私はすべての依存関係を削除して、 )が削除されません。 – user1137472