How to address performance issues when using Entity Framework Core and Include() for large amounts of data?
I’m developing an application using Entity Framework Core (.NET 6) and I’m encountering performance issues when retrieving data using the GetQuestionByTest() method. I want to load data from TblMultipleChoices related to the TblQuestionTest entity, but the data is quite large, and this is slowing down the application’s response time. Here is a portion of the … Read more