【发布时间】:2015-11-27 18:42:45
【问题描述】:
我之前使用我的 MVC 应用程序添加了 3 个角色。现在我无法添加新角色。当我调试时,我可以看到新的角色 ID,但角色名称为空。我该如何解决这个问题?
我目前有 3 个角色。用户、管理员、销售。现在我想添加帐户角色并且无法添加。
控制器
// POST: /Roles/Create
[HttpPost]
public ActionResult Create(FormCollection collection)
{
try
{
context.Roles.Add(new Microsoft.AspNet.Identity.EntityFramework.IdentityRole()
{
Name = collection["RoleName"]
});
context.SaveChanges();
ViewBag.ResultMessage = "Role created successfully !";
return RedirectToAction("Index");
}
catch
{
return View();
}
}
CSHTML
@model Microsoft.AspNet.Identity.EntityFramework.IdentityRole
<div class="container body-content">
@{
ViewBag.Title = "Create";
}
<h2>Create Role</h2>
@Html.ActionLink("List Roles", "Index") | @Html.ActionLink("Manage User Role", "ManageUserRoles")
<hr />
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<p>
<div class="form-group">
@Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.Name, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.Name)
</div>
</div>
</p>
<br />
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</div>
}
</div>
【问题讨论】:
标签: entity-framework asp.net-mvc-5 asp.net-identity