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 trialMax Engberg
Courses Plus Student 1,397 PointsAm I using the using statement correct here?
Hi,
I can't see whats wrong with my code. The Compiler goes nuts and gives me 6 errors, so it's probably something in the beginning. Am I using the using statement correct here?
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
namespace Treehouse.CodeChallenges
{
public static class Repository
{
using (var context = new Context()) {
public static List<Course> GetCourses()
{
context.Courses.ToList();
}
}
}
}
1 Answer
Steven Parker
231,198 PointsThe structure of your "using" statement is correct but the placement needs adjusting. It should be inside the "GetCourses" method.
You're also accessing the "ToList" method correctly, but not doing anything with the result. This should be part of a return statement.