Search Results

1
vote
9answers
296 views

Dealing with Date only dates across timezones in .Net

Ok - a bit of a mouthful. So the problem I have is this - I need to store a Date for expiry where only the date part is required and I don't want any timezone conversion. So for example if …
0
votes

Dealing with Date only dates across timezones in .Net

ToUniversalTime() won't work. ie server time gets converted to UTC, then the client gets it off the wire and converts from UTC to client-local. Same problem. …
0
votes

Dealing with Date only dates across timezones in .Net

yshuditelu - yep - thinking of going with something like this. Adding a custom Date only type to the wire protocol. Its kinda weird that .Net doesn't have one built in - since many Sql implementat …