我正在使用实体框架学习 MVC 3,但我的控制器中的删除操作结果方法存在问题。我有两种用于删除的 ActionResult 方法,一种使用 [HttpPost] 向数据库提交数据,另一种用于使用基于 ID 的正确记录填充视图。
我的问题是我的参数中有一个空对象,所以当我尝试提交删除事务时,它看不到正确的值,因为我有带有空值的空对象。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using DBFirstMVC.Models;
namespace DBFirstMVC.Controllers
{
public class BrandController : Controller
{
// Instantiate model of my database when controller is called
//TestBradEntities db = new DBFirstMVC.Models.TestBradEntities();
//
// GET: /Brand/
public ActionResult Index()
{
using (var db = new DBFirstMVC.Models.TestBradEntities1())
{
return View(db.Brands.ToList());
}
}
//
// GET: /Brand/Details/5
public ActionResult Details(int id)
{
return View();
}
//
// GET: /Brand/Create
public ActionResult Create()
{
return View();
}
//
// POST: /Brand/Create
[HttpPost]
public ActionResult Create(Brand brand)
{
using (var db = new DBFirstMVC.Models.TestBradEntities1())
{
db.Brands.Add(brand);
db.SaveChanges();
}
return RedirectToAction("Index");
}
//
// GET: /Brand/Edit/5
public ActionResult Edit(int id)
{
try
{
using (var db = new DBFirstMVC.Models.TestBradEntities1())
{
return View(db.Brands.Find(id));
}
}
catch (Exception ex)
{
return View(ex.ToString());
}
}
//
// POST: /Brand/Edit/5
[HttpPost]
public ActionResult Edit(int id, Brand brand)
{
try
{
using (var db = new DBFirstMVC.Models.TestBradEntities1())
{
db.Entry(brand).State = System.Data.EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
}
catch (Exception ex)
{
return View();
}
}
//
// GET: /Brand/Delete/5
public ActionResult Delete(int id)
{
using (var db = new DBFirstMVC.Models.TestBradEntities1())
{
return View(db.Brands.Find(id));
}
}
//
// POST: /Brand/Delete/5
[HttpPost]
public ActionResult Delete(int id, Brand brand)
{
try
{
using (var db = new DBFirstMVC.Models.TestBradEntities1())
{
db.Entry(brand).State = System.Data.EntityState.Deleted;
db.SaveChanges();
}
return RedirectToAction("Index");
}
catch
{
return View();
}
}
}
}
这是带有空对象的代码:
[HttpPost]
public ActionResult Delete(int id, Brand brand)
品牌为空,我不明白为什么。例如
[HttpPost]
public ActionResult Edit(int id, Brand brand)
编辑 actionresult 中的品牌参数在对象中有数据,而不是空值。
有谁知道如何解决这一问题?谢谢。