Do Entity Framework async methods consume ThreadPool threads?
问题 I usually use many EF Core async methods in my web application like this: await db.Parents.FirstOrDefaultAsync(p => p.Id == id); As we know, initial number of threads in ThreadPool by default is limited to number of CPU logical cores. Also user requests are handled by threads in ThreadPool . Should I worry about handling user requests or performance issues due to many async calls in my application? 回答1: Should I worry about handling user requests or performance issues due to many async calls