Say I have two scenarios:
1) WebApi Controller
[System.Web.Http.HttpPost] [System.Web.Http.AllowAnonymous] [Route(\"api/regi
Using ConfigureAwait(false) in controllers does not sound good to me as it will make main thread wait until the operation is finished. The best I figured out is to use it in your Service/Business layer and Persistance layer.
ConfigureAwait(false)