«asp.net-core-identity» 태그된 질문

7
'AuthController'를 활성화하는 동안 'Microsoft.AspNetCore.Identity.UserManager'유형에 대한 서비스를 확인할 수 없습니다.
로그인 컨트롤러에서이 오류가 발생합니다. InvalidOperationException : 'Automobile.Server.Controllers.AuthController'활성화를 시도하는 동안 'Microsoft.AspNetCore.Identity.UserManager`1 [Automobile.Models.Account]'유형에 대한 서비스를 확인할 수 없습니다. 다음은 인증 컨트롤러 생성자입니다. 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의 ConfigureServices입니다. public void ConfigureServices(IServiceCollection services) { // Add framework …

1
유형 또는 네임 스페이스 이름 'IWebHostEnvironment'를 찾을 수 없습니다 (사용 지시문 또는 어셈블리 참조가 누락 되었습니까?)
.NET Core 3.0.100을 사용하고 있습니다. Microsoft Visual Studio Community 2019 Preview 버전 16.4.0 Preview 1.0; Blazor-server (공식 릴리스). Blazor-server 웹 앱에 인증 및 권한 부여를 추가하려고합니다. https://docs.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity?view=aspnetcore-3.0&tabs=visual-studio#scaffold-identity-into-an 에서 지침을 읽고 있습니다. 빈 프로젝트 (또한 https://github.com/aspnet/Identity/issues/1825을 읽었습니다 ) 그런 다음 Project를 마우스 오른쪽 버튼으로 클릭하고 Add\를 선택하십시오.New Scaffolded Item... file을 읽은 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.