How do I use the \"NOT IN\" to get the missing data, to be added to \"foo\" List.
var accessories = new List(); var foo = new List()
There's a LINQ method to do this for you, it looks like this; accessories.Except(foo);
accessories.Except(foo);