7
'AuthController'ı etkinleştirmeye çalışırken' Microsoft.AspNetCore.Identity.UserManager` türü hizmet çözümlenemiyor
Bu hatayı Login Controller'da alıyorum. InvalidOperationException: 'Automobile.Server.Controllers.AuthController' etkinleştirilmeye çalışılırken 'Microsoft.AspNetCore.Identity.UserManager`1 [Automobile.Models.Account]' türü hizmet çözümlenemiyor. Auth Controller kurucusu: 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; } ve burada startup.cs içindeki ConfigureServices var: public void ConfigureServices(IServiceCollection services) { // Add framework …