Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

New to Linq to Entities. I am using entity framework and linq. In my db I have something akin to Cars, Users, UserCars where UserCars holds the ID from User and Cars. Standard stuff.

EF maps this to Car and User objects.

Now a user currently has many cars. Through my application I end up with a new List of Car IDs.

I need to update the UserCars table with the new list of cars for the current user.

So what needs to happen basically, The current cars for the user are deleted, and the new list of car ids/userid is inserted.

What is the easiest way to go about this using linq to entities?

share|improve this question

1 Answer

up vote 1 down vote accepted

The User entity should have a Cars property. You can just clear that collection and then add the new Cars to reflect the new state, i.e. somewhat like this:

User myUser = context.Users.First();
var carCollection = context.Cars.Where( c => carIdCollection.Contains(c.Id));
myUser.Cars.Clear();

foreach(Car car in carCollection)
   myUser.Cars.Add(car);

...
context.SaveChanges();
share|improve this answer
thanks just couldn't get my.head around where to being. Should work perfect – stephen776 Feb 10 '11 at 1:58

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.