When I inject SignInManager in ASP.NET Core 3.1, I get the exception message
Unable to resolve service for type ‘Microsoft.AspNetCore.Identity.SignInManager’
My Account Controller
private readonly UserManager<User> userManager;
private readonly SignInManager<User> signInManager;
public AccountController(UserManager<User> _userManager, SignInManager<User> _signInManager)
{
this.userManager = _userManager;
this.signInManager = _signInManager;
}
My Startup.cs
services.AddIdentityCore<User>(opt =>
{
opt.User.RequireUniqueEmail = true;
})
.AddRoles<IdentityRole>()
.AddClaimsPrincipalFactory<UserClaimsPrincipalFactory<User,IdentityRole>>()
.AddEntityFrameworkStores<HISDbContext>()
.AddDefaultTokenProviders();
services.AddAutoMapper(typeof(Startup));
services.AddDbContext<HISDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("HISConn"))
);
//services.AddScoped<UserManager<User>>();
My User class
public class User : IdentityUser
{
//public string FirstName { get; set; }
//public string LastName { get; set; }
}
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You should use the AddSignInManager extension on IdentityBuilder.
Assuming that you’ve replaced IdentityUser with User elsewhere in your project, you can use .AddSignInManager<SignInManager<User>>() like below.
services.AddIdentityCore<User>(opt =>
{
opt.User.RequireUniqueEmail = true;
})
.AddRoles<IdentityRole>()
.AddClaimsPrincipalFactory<UserClaimsPrincipalFactory<User,IdentityRole>>()
.AddSignInManager<SignInManager<User>>()
.AddEntityFrameworkStores<HISDbContext>()
.AddDefaultTokenProviders();
AddSignInManager Documentation
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0