「連続した複数の値」、つまりデータの重複を引き起こしているラムダ式があります。これはラムダ式です:
var destinations = this.contentBusiness.GetAllDisplayVersions()
.Where(x => airportDestinations.Any(y => y.DestinationAirport.DestinationGuideId == x.ParentId))
.Select(x => new DestinationViewModel(airportDestinations.Single(y => y.DestinationAirport.DestinationGuideId == x.ParentId), x));
ここで、これに対応する SQL ステートメントが必要です。