Identity 3 SignInManager.PasswordSignInAsync() doesn't return any result
问题 I am creating web application with Identity 3.0 and have problems with SignInManager PasswordSignInAsync() method. I'm using it just like in documentation, but it doesn't return anything ( application code just stop there ) Here`s my controller code: public class AppController : Controller { private IAccountService _service; private readonly SignInManager<User> _signInManager; private UserManager<User> _userManager; public AppController(IAccountService service, SignInManager<User>