To perform an asynchronous query operation, the ________ extension method can be used on a LINQ query in Entity Framework.

  • .AsAsyncEnumerable()
  • .AsNoTracking()
  • .AsQueryable()
  • .ToListAsync()
The correct answer is .AsAsyncEnumerable(). This extension method allows for asynchronous querying of data, which can improve application responsiveness.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *