The Include() method should usually return the list of specific objects but strangely, it returns all its nested objects without even using ThenInclude(). How should I block these nested objects?...return Db.Courses.Include(x => x.Program).ToList();
...Th...