首页 > 解决方案 > 无法在 dotnet Core 2.1 中创建新角色

问题描述

我一直在阅读 dotnet core Authentication Documentation 并尝试做一些示例。我能够创建新用户,但在创建新角色时遇到了问题。当我调用 RoleManager.CreateAsync 时,它不会创建新角色。

应用上下文类:

  public class ApplicationDbContext : IdentityDbContext<ApplicationUser, IdentityRole<string>, string>
    {
        public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
            : base(options)
        {

        }
     }

启动.cs:

   services.AddDbContext<ApplicationDbContext>(options =>
        options.UseSqlServer(
            Configuration["AppSetting:DefaultConnection"]));

    services.AddIdentity<ApplicationUser, IdentityRole<string>>()
        .AddEntityFrameworkStores<ApplicationDbContext>()
        .AddDefaultTokenProviders();

我的存储库:

 private readonly UserManager<ApplicationUser> _userManager;
        private readonly SignInManager<ApplicationUser> _signManager;
        private readonly ApplicationDbContext _context;
        private readonly RoleManager<IdentityRole<string>> _roleManager;
        public AccountRespository(UserManager<ApplicationUser> userManager, SignInManager<ApplicationUser> signManager, ApplicationDbContext context, RoleManager<IdentityRole<string>> roleManager)
        {
            _signManager = signManager;
            _userManager = userManager;
            _context = context;
            _roleManager = roleManager;
        }

我在转发中创建角色方法

public async Task CreateRoles(string roleName)
        {
            await _roleManager.CreateAsync(new IdentityRole() { Name = "Admin" });
        }

标签: .net-corerole-manager

解决方案


当我调用 CreateRole 方法时,上下文已被释放。我将 create 方法添加到接口并从控制器调用它。它现在按预期工作。


推荐阅读