1
    [UseFiltering]
    public IQueryable<User> GetUsers([ScopedService] DbContext context)
    {
        return context.Users;
    }

When we use [UseFiltering], does Hot Chocolate use async EF methods to retrieve data ?

Ddd
  • 113
  • 2
  • 15
  • 1
    According to the response to this question (https://github.com/ChilliCream/hotchocolate/issues/2320) they run asynchronous tasks but don't necessarily take direct advantage of EF's `*Async()` extension methods as of version 10 but were looking to possibly detect and incorporate support to use them with v11. – Steve Py Dec 08 '21 at 22:05

0 Answers0