1
在我的應用程序中,我已將我的UserId
與我數據庫中的表關聯。我需要這個,當我創建一個新項目時,我可以從下拉列表中選擇用戶名。並且'可以使用元素viewbag來做到這一點?ASP.NET MVC 3用戶下拉列表
@Html.EditorFor(model => model.UserId)
我使用默認的成員資格提供這樣我就可以不使用實體框架對於這個問題
編輯
EDIT 2
這是我的行動創造:
[HttpPost]
public ActionResult Create(Employe employe)
{
var users = Roles.GetUsersInRole("Admin");
SelectList list = new SelectList(users);
ViewBag.Users = list;
if (ModelState.IsValid)
{
**employe.EmployeID = users;**
db.Employes.Add(employe);
db.SaveChanges();
}
這不起作用。錯誤是:
無法隱式轉換類型 '字符串[]' 到 '字符串'
我對Employee
public class Employee
{
[Key]
public int EmployeID { get; set; }
public Guid UserId { get; set; }
public string Name { get; set; }
[ForeignKey("UserId")]
public virtual MembershipUser User
{
get
{
return Membership.GetUser(this.Name); //Changed this to Name
}
}
}
}
視圖模型:
@Html.DropDownList("Users", ViewBag.Users as SelectList);
我導致UserId
字段不是UserId
但這種000000-000000-0000000-00000
感謝....取而代之的是 「收集」 我需要一個值GetUserbyRole ()以便我可以看到只有某個角色的用戶,這個方法有一些例子嗎? – Mirko 2012-02-22 17:27:37
你的意思是「Roles.GetUsersInRole(」role name「)」? – anAgent 2012-02-22 18:41:03
是的......我需要試試這個代碼也許在一個viewbag值 – Mirko 2012-02-22 19:28:17