I'm trying to do a fairly simple linq join like so:
var locations = (from location in session.Query<Location>()
join speed in session.Query<ISDNSpeeds>() on location.ISDNSpeed equals speed.Id
where
(location.LastUpdatedTime > lastUpdateTime)
select new
{
Location = location,
Speed = speed,
})
.Take(10).ToList();
It seems to run without error, but I can't access the Speed object, I just get a list of location objects.
How would I access speed in this case?