数据注释仅用于编辑

时间:2011-04-12 06:16:04

标签: asp.net-mvc data-annotations

Here is my controller codes

//
        // GET: /Department/Create

        public ActionResult Create()
        {
            return View(new department());
        } 

        //
        // POST: /Department/Create

        [HttpPost]
        public ActionResult Create(department dept)
        {
            try
            {
                dbContext.AddTodepartments(dept);
                dbContext.SaveChanges();
                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        //
        // GET: /Department/Edit/5

        public ActionResult Edit(int id)
        {
            return View(dbContext.departments.Single(d => d.DeptID == id));
        }

        //
        // POST: /Department/Edit/5

        [HttpPost]
        public ActionResult Edit(int id, FormCollection collection)
        {
            var dept = dbContext.departments.Single(d => d.DeptID == id);
            try
            {
                UpdateModel(dept);
                dbContext.SaveChanges();
                return RedirectToAction("Index");
            }
            catch
            {
                return View(dept);
            }
        }

Here is the partial class 

    [MetadataType(typeof(DepartmentMetaData))]
    public partial class department
    {
    }
    public class DepartmentMetaData
    {
        [Required(AllowEmptyStrings = false, ErrorMessage = "Department name required.")]
        public string DeptName { get; set; }
    }


    The required field validation is happening on the editing only. I can insert a null 'Department name' but on eding the values, it is not allowing to enter a null value.

1 个答案:

答案 0 :(得分:1)

您应该在创建记录时进行ModelState.IsValid检查。有关ModelState here

的更多信息