MVC3 Roles Dropdown box

792 Views Asked by At

Im trying add roles to a drop dropdown box but im getting the error thats below. please help.

Model Code

  public SelectListItem RolesForUser {get; set;}

Controller Code

 var roles = Roles.GetRolesForUser(model.username);
 model.RolesForUser=roles.select(m => new SelectListItem() 
 {Value=m.ToString(),Text=m.ToString()});

Error 21 Cannot implicitly convert type 'System.Collections.Generic.IEnumerable' to 'System.Web.Mvc.SelectListItem'. An explicit conversion exists (are you missing a cast?)

1

There are 1 best solutions below

1
On BEST ANSWER

declare RolesForUser as List<SelectListItem> RolesForUser and change LINQ query as

model.RolesForUser=roles.select(m => new SelectListItem() {Value=m.ToString(),Text=m.ToString()}).ToList();