var ary = from t1 in list1
                       join t2 in list2 on t1.id equals t2.id
                       select t2;