ASP.NET MVC必需的DataAnnotation

时间:2013-05-06 15:50:03

标签: c# asp.net-mvc-4 ef-code-first data-annotations

我正在使用ASP.NET构建我的第一个应用程序,而我正在使用实体框架。

我有两个班级:

public class Owner
{
    public int ID { get; set; }
    [Required(ErrorMessage="Empty Owner name")]
    [MaxLength(10,ErrorMessage="Up to 10 chars")]
    [Display(Name="Owners name")]
    public string Name { get; set; }
    public DateTime Born { get; set; }
    public virtual List<Dog> dogs { get; set; }
}
public class Dog
{
    public int ID { get; set; }
    [Required(ErrorMessage="Empty dog name")]
    [MaxLength(10,ErrorMessage="Up to 10 chars")]
    [Display(Name="Dogs name")]
    public string Name { get; set; }
    public virtual Owner owner { get; set; }
}

我可以将所有者添加到数据库中,但我无法添加狗。 我在视图中使用文本框和列表框,如:

@using (Html.BeginForm("New", "Dog"))
{
    @Html.LabelFor(x => x.Name);
    @Html.TextBoxFor(x => x.Name);
    <br />
    @Html.ListBoxFor(x => x.owner.ID, new MvcApplication2.Models.GazdiKutyaDB().GetOwners());
    <br />
    <input type="submit" />
}

我创建了一个GetOwners方法,将现有所有者添加到列表框中,并为用户选择谁是狗的所有者。

public List<SelectListItem> GetOwners()
{
    List<SelectListItem> g = new List<SelectListItem>();
    foreach (Owner item in owners)
    {
         SelectListItem sli = new SelectListItem();
         sli.Text = item.Name;
         sli.Value = item.ID.ToString();
         g.Add(sli);
    }
    return g;
}

我为狗创建了一个控制器。这是我的添加方法:

[HttpGet]
public ActionResult New()
{            
     return View();
}
[HttpPost]
public ActionResult New(Dog k)
{
     if (ModelState.IsValid)
     {
          k.owner = (from x in db.owners
                      where x.ID == k.owner.ID
                      select x).FirstOrDefault();
          db.dogs.Add(k);
          db.SaveChanges();
          return RedirectToAction("Index", "Dog"); 
     }
     else
     {
          return View(k);
     }
}

我插入了断点,ModelState.IsValid为假的原因是所有者名称为空:[Required(ErrorMessage="Empty Owner name")]我不明白这一点,因为我想在那里添加一条狗。

1 个答案:

答案 0 :(得分:2)

为什么不将ownerID添加到类中:

public class Dog
{
    public int ID { get; set; }
    [Required(ErrorMessage="Empty dog name")]
    [MaxLength(10,ErrorMessage="Up to 10 chars")]
    [Display(Name="Dogs name")]
    public string Name { get; set; }
    public int ownerID { get; set; }
}

当您使用数据库时,这是最简单的方法(在我看来)。

Here is an excellent video tutorial, showing ways to get your models to work as expected in EF