Ubuntu – An exception occurred while iterating over the results of a query for context type 'mytype'
In production, my ASP.NET project works well and returns the query below, in about 12 seconds: [HttpGet("suggest/{id1}/{id2}/{id3}")] public async Task<List<int>> GetRecommendedShows(int id1, int id2, int id3) { List<int> showIds = new List<int>() { id1, id2, id3 }; // Fetch all…