I need to set up an non-recurring Hangfire cron job that will run on a specific date and time for one time, I will have a pre-determined job id that would manage the job (hence preferring a cron operation - potentially changing the job schedule)
Answer: Scheduling a job works, but in Hangfire either you can run a cron job (recurring) or a instant job that will be scheduled immediately for execution, I was looking for a non-recurring cron job which they don't support as of December 2020 (I have my answer).