网络核心:类型或名称空间名称“ RoleProvider”找不到

时间:2019-03-25 05:34:57

标签: c# .net-core asp.net-core-mvc .net-core-2.0

我正在将一个项目从.Net 4.6.2迁移到.Net Core 2.0。 Net Core中RoleProvider的替代品是什么?

找不到类型或名称空间名称“ RoleProvider”(您是否缺少using指令或程序集引用?)

 public class CustomerRoleProvider : RoleProvider
    {
        public override string CustomerName { get; set; }

        public override void AddUsersToRoles(string[] usernames, string[] roleNames)
        {

新代码如下所示,收到错误

Using the generic type 'RoleManager<TRole>' requires 1 type arguments

// Error first line: Using the generic type 'RoleManager<TRole>' requires 1 type arguments

public class CustomerRoleProvider : RoleManager
{
    public string ApplicationName { get; set; }

    public void CreateRole(IServiceProvider serviceProvider, string roleName)
    {
        var RoleManager = serviceProvider.GetRequiredService<RoleManager<IdentityRole>>();
        throw new NotImplementedException();
    }

更新: 约翰·肯尼(John Kenney)的答案看起来很棒,希望有人可以在编辑时添加更多答案。

1 个答案:

答案 0 :(得分:6)

RoleProvider在.NET Core中不存在,至少不是这种形式。 我相信您正在寻找的是RoleManager。实现与以下内容非常相似:

var RoleManager = serviceProvider.GetRequiredService<RoleManager<IdentityRole>>();
var UserManager = serviceProvider.GetRequiredService<UserManager<ApplicationUser>>();

请参阅此article,以获取有关实现方法的详细信息。