我有以下代碼:如何填充一個表的外鍵自動
var game = (from k in db.GamerTBLs
where k.UserName == User.Identity.Name
select k.GamerID).Single();
return View(game);
,這是我的控制器:
[HttpPost]
public ActionResult Create(GameTBL gametbl)
{
if (ModelState.IsValid)
{
db.GameTBLs.Add(gametbl);
db.SaveChanges();
return RedirectToAction("Index");
}
var game = (from k in db.GamerTBLs where k.UserName == User.Identity.Name
select k.GamerID).Single();
return View(game);
}
我試圖填充玩家ID的相關桌上有外鍵GamerIDFK的遊戲。
任何一個可以請一些啓發,如果您需要了解更多信息,請讓我知道
你的問題有點令人困惑,你能解釋一下這個頁面應該做什麼嗎?並且你也可以發佈你的模型... – 2012-03-25 21:40:09