How can we help you today? How can we help you today?
JonSmith
Hi, I vote from me for support of AS.NET Core 1.0.0 and Entity Framework Core 1.0.0. Just starting work on using Core RTM and profiling would be very helpful. / comments
Hi, I vote from me for support of AS.NET Core 1.0.0 and Entity Framework Core 1.0.0. Just starting work on using Core RTM and profiling would be very helpful.
0 votes
Hi Alex, Sorry in the delay in getting back to you but I had other work I needed to press on with. I have looked at your suggestions and the documentation. I am definitely have View->Async Mode ticked and the advanced setting has 'Profile with Async awareness' ticked. I also swapped to wall-clock timing, ms. Problem is I still have the same problem, i.e. 1) The Time to await reads as 75,897 ms (for instance) for the call to the Detail view, but Chrome developer said the call finished in 30 ms (Load was 308ms) 2) I don't get any database calls listed in ANTS view, i.e. if i select 'Database calls' in the View dropdown list is says 'No SQL queries were recorded ... etc.' The application is an MVC5 web app running the action below. The GetRenderLabelGroupAsync method which has a couple of database calls, both using Async. public async Task<ActionResult> Details(int labelGroupId, IGenericActionsDbContext db) { var status = await RenderSetupDto.GetRenderLabelGroupAsync(db, labelGroupId, false); if (status.IsValid) return View(status.Result); //else error, so set status and return to index page TempData["Status"] = status; return RedirectToAction("Index"); } I have Isolated the call by leaving plenty of time before and after it. Also, as I said in my last post, I took the trouble to convert it all to sync and ANTS worked perfectly. What on earth am I doing wrong? / comments
Hi Alex, Sorry in the delay in getting back to you but I had other work I needed to press on with. I have looked at your suggestions and the documentation. I am definitely have View->Async Mode tic...
0 votes