I have a pretty complicated sql script which cleans up my database and will be run manually from time to time. Immediatelly after the script has run I have to start a recurring hangfire job which is usually executed only once per day.
In order not to forget to run the script I would like to trigger the execution directly from the sql script. Is there a simple way to modify one of the hangfire tables to achieve this task?
Hangfire core version is 1.7.5
UPDATE: Unfortunately I have not found any hangfire table containing the recurring jobs. Therefore I guess they are not persisted at all. Would it be possible to run a job by just inserting a new line in the HangFire.Job table? Or is this a bad idea?