Hi,
I have two simple lists,List<Flight> flights , List<TripRecord> trips. The joining addition is Flight.flightNo ==
TripRecord.flightNo &&
Flight.departTime ==
TripRecord.departTime.
It should be noted that the Flight attribute is not included in entity TripRecord
How can I use Jinq to make flights join trips?
Thanks very much for your time!