Can we create a batch job to read and update database at specific time using hangfire

i got reference of hangfire from my friend.I have below requirement.Please confirm if hangfire is meant for this?
1.can we create a batch job to read and update database at specific time using hangfire.

Hangfire is able to create jobs which run on a schedule. You would use Hangfire.RecurringJob.AddOrUpdate and pass in a cron expression to determine when the job runs.

The documentation can be found here:
https://docs.hangfire.io/en/latest/background-methods/performing-recurrent-tasks.html

The cron expressions are based on NCronTab which can be found here:
https://code.google.com/archive/p/ncrontab/wikis

It doesn’t appear that the BatchJob that comes with HangfirePro has scheduled jobs out of the box. What you could do is start a recurring job which creates the batch jobs