I'm storing times in UTC at a MongoDB server.
When reading them back, using:
import org.joda.time.DateTime
...
val time_utc: DateTime = dbo.get("time_utc").asInstanceOf[DateTime]
I get times converted to local time zone of the server. How should I read the dates to remain in UTC all the time?