Call asynchronous external web service in asp.net MVC controller
问题 In the Asp.net MVC controller (GET method) I am calling external web service - for geolocation of IP - returning json data for IP location. How can I make the call to be async, hence the stack can continue while waiting the response from the service. When the GEO IP request finished I want to be able to make update to the db. Here is the current sync code: public ActionResult SelectFacility(int franchiseId, Guid? coachLoggingTimeStampId) { //... string responseFromServer = Helpers