We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to get a list of Roles by using _roleManager.Roles. Here is my code:
public class RoleManagerController : Controller { private RoleManager _roleManager; public RoleManagerController( RoleManager<ExtendedIdentityRole> roleManager ) { _roleManager = roleManager; } public IActionResult Index() { var models = _roleManager.Roles; return View(models); } }
public class RoleManagerController : Controller { private RoleManager _roleManager;
public RoleManagerController( RoleManager<ExtendedIdentityRole> roleManager ) { _roleManager = roleManager; } public IActionResult Index() { var models = _roleManager.Roles; return View(models); }
}
But it looks like this property is not implemented:
Daarto/src/AspNetCore.Identity.Dapper/Stores/RoleStore.cs
Line 76 in f19411e
Is there another way to get the list of Roles?
Thanks, Pete
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to get a list of Roles by using _roleManager.Roles. Here is my code:
But it looks like this property is not implemented:
Daarto/src/AspNetCore.Identity.Dapper/Stores/RoleStore.cs
Line 76 in f19411e
Is there another way to get the list of Roles?
Thanks,
Pete
The text was updated successfully, but these errors were encountered: