Aminu Babayo Shehu
01/25/2023, 3:53 PMcreation_date, the creation_date is UTC please how can I query the result using the PST time zone USING KTOM in KTOR
This is my query:
val customers = db
._from_(Customers)
._select_()
._limit_(offset = offset, limit = limit)
._orderBy_(Customers.creationDate._desc_())
._map_ *{* row *->* Customers.createEntity(row) *}*Benoît Liessens
01/25/2023, 4:56 PMAminu Babayo Shehu
01/25/2023, 4:57 PMBenoît Liessens
01/25/2023, 5:28 PMDateTimeFormatter.ISO_DATE_TIME.parse( column).toDate(ZoneId.of(“PST”))Aminu Babayo Shehu
01/25/2023, 5:38 PMBenoît Liessens
01/25/2023, 5:51 PMAminu Babayo Shehu
01/26/2023, 12:55 PMat timezone