如何从 Razor 中的 TextAreaFor (或其他形式的 HTML 输入)中获取每一行以供 Create 方法(或如何修改该方法)作为单独的值并插入到 DB 中的单独行中。
控制器:
[HttpPost]
public ActionResult Create(Names name)
{
unitofwork.Names.Insert(name);
unitofwork.save();
return RedirectToAction("Index");
}
看法
@Html.TextAreaFor(model => model.name)
Names
模型
[Key]
public int NameID { get; set; }
[Required]
public string Opinion { get; set; }
[Required]
public int ID { get; set; }
public virtual NickName NickName { get; set; }