using System;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
//my model
public class Roll
{
[Key]
public uint Id { get; set; }
public long RandomSeed { get; set; }
public string Expression { get; set; }
public DateTime DateCreated { get; set; }
public long Total { get; set; }
}
//my context
public class DiceboxContext : DbContext
{
public DbSet<Roll> Rolls { get; set; }
}
//my controller
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace dicebox.Controllers
{
public class RollController : Controller
{
private DiceboxContext db = new DiceboxContext();
//
// GET: /Roll/
public ActionResult Index()
{
return View(db.Rolls.ToList());
}
//
// GET: /Roll/Details/5
public ActionResult Details(int id = 0)
{
Roll roll = db.Rolls.Find(id);
if (roll == null)
{
return HttpNotFound();
}
return View(roll);
}
//
// GET: /Roll/Create
public ActionResult Create()
{
return View();
}
//
// POST: /Roll/Create
[HttpPost]
public ActionResult Create(Roll roll)
{
if (ModelState.IsValid)
{
db.Rolls.Add(roll);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(roll);
}
//
// GET: /Roll/Edit/5
public ActionResult Edit(int id = 0)
{
Roll roll = db.Rolls.Find(id);
if (roll == null)
{
return HttpNotFound();
}
return View(roll);
}
//
// POST: /Roll/Edit/5
[HttpPost]
public ActionResult Edit(Roll roll)
{
if (ModelState.IsValid)
{
db.Entry(roll).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
return View(roll);
}
//
// GET: /Roll/Delete/5
public ActionResult Delete(int id = 0)
{
Roll roll = db.Rolls.Find(id);
if (roll == null)
{
return HttpNotFound();
}
return View(roll);
}
//
// POST: /Roll/Delete/5
[HttpPost, ActionName("Delete")]
public ActionResult DeleteConfirmed(int id)
{
Roll roll = db.Rolls.Find(id);
db.Rolls.Remove(roll);
db.SaveChanges();
return RedirectToAction("Index");
}
protected override void Dispose(bool disposing)
{
db.Dispose();
base.Dispose(disposing);
}
}
}
このほとんどは定型文で自動生成されたコードです。get /Roll/Create アクション以外の Any アクションを実行すると、次のエラー メッセージが表示されます。
System.Data.Entity.Edm.EdmEntityType: : EntityType 'Roll' にはキーが定義されていません。この EntityType のキーを定義します。
System.Data.Entity.Edm.EdmEntitySet: EntityType: EntitySet 'Rolls' は、キーが定義されていないタイプ 'Roll' に基づいています。
しかし、すでにおわかりのように、キーが定義されています。このモデルを支えるデータベース テーブル "Rolls" に対して定義されたキーもあります。私がグーグルから得たすべての回答は、[Key] アノテーションを追加することを提案していますが、私はすでに持っています。
私は何を間違っていますか?