本文介绍了获取在ASP.NET MVC5识别系统中所有的角色名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
MVC5采用了新的识别系统。我怎样才能得到所有的角色名?
MVC5 uses a new Identity System. How can I get all role names?
我试着通过 IdentityStore
做访问,但没有成功。
I try do access it via IdentityStore
but without success.
推荐答案
我发现,您可以通过 IdentityStore 的DbContext
/ code>实例,并使用众所周知的方法。设置< T>()
I've found that you can use the DbContext
via the IdentityStore
instance and use the well-known method .Set<T>()
.
这对我的作品:
var identityStore = new IdentityStore();
foreach (var role in identityStore.DbContext.Set<Role>())
{
Debug.WriteLine(role.Name);
}
这篇关于获取在ASP.NET MVC5识别系统中所有的角色名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!