Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application I have Lecturers and they have list of Courses they can teach and when I'm deleting a course I want to remove connection to lecturers. Here's the code:

public void RemoveCourse(int courseId)
{

    using (var db = new AcademicTimetableDbContext())
    {
        var courseFromDb = db.Courses.Find(courseId);

        var toRemove = db.Lecturers
                        .Where(l => l.Courses.Contains(courseFromDb)).ToList();

        foreach (var lecturer in toRemove)
        {
            lecturer.Courses.Remove(courseFromDb);
        }
        db.SaveChanges();
    }
}

But it doesn't work. I get NotSupportedException : Unable to create a constant value of type 'Course'. Only primitive types or enumeration types are supported in this context. What am I doing wrong?

share|improve this question
what kind of relation is between Lecturer and Course? Is it 1-to-n or n-to-n? – w0lf Nov 15 '12 at 20:34

1 Answer

up vote 8 down vote accepted

You can't use Contains with non-primitive values. Do

Where(l => l.Courses.Select(c => c.CourseId).Contains(courseId)

(or the Id field you use).

share|improve this answer
Thanks, it works ;) – pawel1708hp Nov 15 '12 at 21:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.