ASP.NET Core Practice Test
ASP.NET Core Entity Framework Core 3
What is the N+1 query problem in Entity Framework Core?
Select your answer
A
Executing one query to fetch a list then N additional queries for each item's related data
B
Running N parallel queries and one summary query
C
A naming issue with N-level deep relationships
D
Querying the same entity N+1 times by mistake
Hint