如何使用实体框架在 MVC4 中插入记录?
这是我的浏览页面:
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.brand_id)
</td>
<td>
@Html.DisplayFor(modelItem => item.brand_name)
</td>
<td>
@Html.ActionLink("ADD", "BrandList", new { item.brand_id })
</td>
</tr>
}
这是我的控制器代码:
public ActionResult BrandList()
{
return View(db.brand.ToList());
}
[HttpPost]
public ActionResult BrandList(int id)
{
lovelist Add_Brand = new lovelist();
Add_Brand.lovelist_member = (int)Session["Member_ID"];
Add_Brand.lovelist_brand = id;
db.lovelist.Add(Add_Brand);
db.SaveChanges();
return RedirectToAction("BrandList");
}
这就是我到目前为止所做的。
我无法将记录插入我的数据库。
没有任何错误信息。我仍然无法将记录插入我的数据库。