How to set the time zone of Hangfire database date columns like “CreatedAt”, “ExpireAt”, etc.?
They include the UTC time even though the job runs according to the local time.
Hangfire resolves the stored date/time to the local time of the server when required - is there a specific issue you’re running into?
If you want to change what time zone is resolved, you can always replace the DefaultTimeZoneResolver as part of your configuration. Here’s how that class is implemented: