I have 2 tables one with cities and another with temperature/date values for the cities, a city can have multiple dates with temperature.
how could I by EF + linq bring the cities + the most recent temperature of each one
something like: _context.city.include(x=> x.temperature().last());