如何在Aspnet核心身份中添加多个身份存储



我当前正在添加带有IdentityServer4的ASP.NET核心身份。

我添加了类似于下面行的身份。

services.AddDbContext<PublicApplicationDbContext>(options =>
                options.UseSqlServer(
                    connection))
                .AddIdentity<PublicIdentityUser, PublicIdentityRole>(opts =>
                {
                    opts.Password.RequiredLength = 6;
                })
                .AddDefaultTokenProviders()
                .AddEntityFrameworkStores<PublicApplicationDbContext>();

我想进入一个类似的存储库,因此我创建了一组单独的内部对象,例如InternalApplicationDbContext,internalidentityUser。我认为这就像配置上面的步骤并注入此步骤一样容易...

UserManager<InternalIdentityUser>

但是,它似乎不起作用,我遇到了与此类似的错误。方案已经存在https://github.com/aspnet/aspnetcore.docs/issues/8223

我已经阅读了一些与此相关的文档,但没有任何意义不超过一个身份提供商。是这样还是我错过了什么?

总而言之,我希望两个单独的数据库管理用户,一个用于公共用户,另一个用于内部用户。我想使用内置的身份API USERMANAGER来封装实现,因为老实说我不想构建自己的。

https://learn.microsoft.com/en-us/aspnet/core/security/authentication/indistity-custom-custom-storage-providers?view= appnetcore-2.2#references

浏览github上的ASP.NET核心源代码后,可以使用此扩展方法添加第二个身份:

using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using System;
using System.Collections.Generic;
using System.Text;
namespace Whatever
{
    public static class IdentityExtensions
    {
        public static IdentityBuilder AddSecondIdentity<TUser, TRole>(
            this IServiceCollection services)
            where TUser : class
            where TRole : class
        {
            services.TryAddScoped<IUserValidator<TUser>, UserValidator<TUser>>();
            services.TryAddScoped<IPasswordValidator<TUser>, PasswordValidator<TUser>>();
            services.TryAddScoped<IPasswordHasher<TUser>, PasswordHasher<TUser>>();
            services.TryAddScoped<IRoleValidator<TRole>, RoleValidator<TRole>>();
            services.TryAddScoped<ISecurityStampValidator, SecurityStampValidator<TUser>>();
            services.TryAddScoped<IUserClaimsPrincipalFactory<TUser>, UserClaimsPrincipalFactory<TUser, TRole>>();
            services.TryAddScoped<UserManager<TUser>, AspNetUserManager<TUser>>();
            services.TryAddScoped<SignInManager<TUser>, SignInManager<TUser>>();
            services.TryAddScoped<RoleManager<TRole>, AspNetRoleManager<TRole>>();
            return new IdentityBuilder(typeof(TUser), typeof(TRole), services);
        }
    }
}

https://stackoverflow.com/a/47434573/8006943

相关内容

  • 没有找到相关文章

最新更新