我在登录控制器中遇到此错误。
无效操作异常:尝试激活“汽车.服务器.控制器.验证控制器”时,无法解析类型“Microsoft.AspNetCore.Identity.UserManager”1[汽车.型号.帐户]“的服务。
下面是身份验证控制器构造函数:
private SignInManager<Automobile.Models.Account> _signManager;
private UserManager<Automobile.Models.Account> _userManager;
public AuthController(UserManager<Models.Account> userManager,
SignInManager<Automobile.Models.Account> signManager)
{
this._userManager = userManager;
this._signManager = signManager;
}
这里是startup.cs中的配置服务:
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddApplicationInsightsTelemetry(Configuration);
services.Configure<AppConfig>(Configuration.GetSection("AppSettings"));
//var provider = HttpContext.ApplicationServices;
//var someService = provider.GetService(typeof(ISomeService));
services.AddDbContext<Providers.Database.EFProvider.DataContext>(options => options
.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"),
b => b.MigrationsAssembly("Automobile.Server")
));
services.AddIdentity<IdentityUser, IdentityRole>(options =>
{
options.User.RequireUniqueEmail = false;
})
.AddEntityFrameworkStores<Providers.Database.EFProvider.DataContext>()
.AddDefaultTokenProviders();
//services.AddScoped<SignInManager<Automobile.Models.Account>, SignInManager<Automobile.Models.Account>>();
//services.AddScoped<UserManager<Automobile.Models.Account>, UserManager<Automobile.Models.Account>>();
services.AddMvc();
App.Service = services.BuildServiceProvider();
// Adds a default in-memory implementation of IDistributedCache.
services.AddDistributedMemoryCache();
services.AddSession(options =>
{
// Set a short timeout for easy testing.
options.IdleTimeout = TimeSpan.FromSeconds(10);
options.CookieHttpOnly = true;
});
}
8条答案
按热度按时间3wabscal1#
您需要在SignInManager、UserManager和services.AddIdentity中使用相同的用户数据模型。如果您使用的是自己的自定义应用程序角色模型类,则相同的主体为真。
所以,改变
到
r8xiu3jd2#
先把答案说清楚:
如果在startup.cs中使用类
ApplicationUser
:services.AddIdentity<ApplicationUser, IdentityRole>()
那么你必须在控制器中使用相同的类来注入它:
如果您使用一些其他类,例如:
则会出现以下错误:
无效操作异常:无法解析类型“Microsoft.AspNetCore.Identity.UserManager”1[身份用户]“的服务
因为您在启动时使用了
ApplicationUser
,而不是IdentityUser
,所以此类型未在进样系统中注册。polkgigr3#
这是一个有点无关的原始职位,但由于谷歌把你带到这里...如果你得到这个错误,并使用:
然后,您需要手动注册
AddIdentity
所做的事情,可以在下面找到:https://github.com/aspnet/Identity/blob/feedcb5c53444f716ef5121d3add56e11c7b71e5/src/Identity/IdentityServiceCollectionExtensions.cs#L79您需要将
TUser
和TRole
替换为它们的实现,或者替换为默认的IdentityUser
、IdentityRole
sxpgvts34#
您可以在启动类中的ConfigureServices中单独设置IdentityUser和IdentityRole,如下所示:
或
您可以直接在AddIdentity中配置:
mbjcgjjk5#
不要忘记在ConfigureServices中添加角色管理器
mnemlml86#
如果您使用的是“IdentityServer”,那么IdentityServer将对用户进行身份验证并对客户端进行授权。默认情况下,IdentityServer实际上与用户管理无关。但它对asp.net Identity提供了一些支持
因此,您需要添加:
yc0p9oo07#
您需要使用以下内容更新Statup.cs类
服务。添加身份〈应用程序用户,身份角色〉()。添加实体框架存储();
这里:ApplicationUser是我的自定义模型类。
l2osamch8#
这是一个有点不相关的原始职位作为上面的答案,但由于谷歌把你带到这里...这是一个更简单的解决方案,如果你得到这个错误,并使用:
服务。添加身份核心()
有一个比上面列出的答案更简单的解决方案,比如这个。
假设您有一个名为ApplicationUser的自定义IdentityUser和一个名为ApplicationRole的自定义角色,您可以简单地使用以下内容来工作。
这就简单多了。
此外,从Microsoft文档中可以看出,您必须像这样声明您的DbContext,它才能进行推断。
当然不一定要使用自定义类型,我在这里使用,可以使用默认值等。