7
Không thể giải quyết dịch vụ cho loại 'Microsoft.AspNetCore.Identity.UserManager` trong khi cố gắng kích hoạt' AuthController '
Tôi gặp lỗi này trong Bộ điều khiển đăng nhập. Không hợp lệ đây là hàm tạo Auth Controller: 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; } và đây là ConfigureServices trong startup.cs: public void ConfigureServices(IServiceCollection services) { // …