I am trying to see some requests that my application makes with EntityFramework . In my method, which is not async , I can see requests normally:
public List<Tool> GetTools()
{
return EntityContext.ToList();
}

But if it looks like:
public Task<List<Tool>> GetTools(int quantity)
{
return EntityContext.Take(quantity).ToListAsync();
}
Can I get async method requests in IntelliTrace Events?
Thanks.
source
share