Content.ReadAsStringAsync() json result adding an extra hour to datetime property

364 Views Asked by At

Content.ReadAsStringAsync() result adding an extra hour to datetime property.

Here is what i get when call endpoint on postman;

enter image description here

The ReadAsStringAsync json result return an extra hour to datetime property.

string result = postResponse.Content.ReadAsStringAsync().Result;

enter image description here

Why there is an extra hour added to datetime property ?

enter image description here

enter image description here

enter image description here

1

There are 1 best solutions below

6
On

You should use DateTimeOffset (instantaneous time or absolute time) instead of DateTime. Read more about in that SO Anserwer about DateTime vs. DateTimeOffset.