Most likely, Azure saves these values ββin a different format than those used by DateTime . This is quite common for systems of types of database systems that differ from the system language of any programming language. Engineering often involves trade-offs, and database developers often make different choices than other tool developers. For example, DateTime uses two bits to store timezone-related data to support a cyclic transition between UTC and local time during daylight saving time. These extra two bits are masked when performing comparisons, hashing, or serialization. I highly doubt that Azure stores such information that it is not needed, and it will only unnecessarily complicate requests.
Unfortunately, I donβt know any reference to the features of how DateTime is stored in Azure, but this MSDN blog mentions both the limited DateTime range, as well as another way in which Azure types are more limited than the .NET equivalents - String and byte[] limited to 64 KB.
source share