I\'m using the BAGA code from Julie Lerman\'s DbContext book. I want to recreate the following SQL query in LINQ and put the results in a List collections and am having pro
var res = from d in context.Destinations
join l in context.Lodgings on d.LocationID equals l.destination_id
where (l.MilesFromNearestAirport > 5 || l.MilesFromNearestAirport == null)
&& d.Country = "usa"
select new {
Destination = d,
Location = l
}