Load list of roles for each user in MVC5 razor
问题 I am trying to display a row of each user and their roles in the ASP.net MVC application. Users and their roles are stored in ASP.net membership provider table. Using the code below I can display each user and the role they are assigned, but my problem is if the user is in multiple roles then the user gets repeated. I tried making UserRole as List but I am now stuck as I do not know how to add the roles to a list in the code below. Could you please provide me some direction? My viewmodel is :