UserManager Error - A second operation started on this context before a previous asynchronous operation completed

前端 未结 2 2180
梦谈多话
梦谈多话 2021-02-20 02:40

I am facing this issue with my asp.net MVC5 web application, using Identity v2.0.0.0, EF 6, Castle Windsor IOC Container, Microsoft SQL Server 2005

I am trying to get th

2条回答
  •  清酒与你
    2021-02-20 03:16

    Maybe You forgot to await async function, and then next statement is trying to execute two queries on single connection?

提交回复
热议问题