I would like to know if this is possible to solve using a lambda expression:
List listOne = service.GetListOne(); List listTwo = service.Ge
listOne.SelectMany(x=>listTwo.Where(y=>x.Id==y.Id && x.someKey != y.someKey));