Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# Entity Framework Basics LINQ Queries Writing a List Query

Daniel Hildreth
Daniel Hildreth
16,170 Points

Writing a LINQ query challenge task 1

I need some help with this challenge. The directions say the following:

In Repository.cs update the GetCourses method to return a list of the available courses. Instantiate an instance of the Context class within a using statement. Return the results of calling ToList on the context's Courses DbSet property.

My code is attached below. What am I doing wrong, and can you explain why what I have written is not correct?

Repository.cs
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;

namespace Treehouse.CodeChallenges
{
    public static class Repository
    {
        public static List<Course> GetCourses()
        {
            using (var context = new Context())
            {
                var courses = context.Courses.ToList();
            }
        }
    }
}

1 Answer

Steven Parker
Steven Parker
231,072 Points

You forgot to return the results.

The challenge said to return the results of the method call, but you assigned them to a new variable named courses instead.

Daniel Hildreth
Daniel Hildreth
16,170 Points

Thanks! Overthought the question on that.