I implemented a country/region/city database for my site. Each city has a timezoneoffset stored as Varchar(32) in the format -06:00 , +09:00 etc. Now I'm not quite sure how to convert my UTC times which are stored in the database with those specific offsets. I know it's possible to convert using TimeZoneInfo.FindSystemTimeZoneById but that's not possible with the 'semi numeric' values I have.
Does anyone have an idea on how to go around this?
Thank you!