I had create a two int type list and assign the items that are only in list1 to list1 using except method. for eg
List<int> list1 = new List<int>();
List<int> list2 = new List<int>();
list1 = {1,2,3,4,5,6} // get items from the database
list2 = {3,5,6,7,8} // get items from the database
list1 = list1.Except(list2); // gives me an error.
Please give me suggestion. What is the right way to do it.