I have this query that works well
var rest = (from de in se.DeliveryConfiguration
join re in se.restaurant on de.Restaurantid equals re.RestaurantID
where (de.Position.Distance(geografi)/1000) < de.Distance
select re).ToList();
Now I need to add the table priceitem and this get MIN(price)
where Price <> 0
and of course following the relationship of the id