How to add new job or update the trigger for existing job in the Quartz.Net?
c#, cron, quartz.net
Solution
You will need to schedule the job with a new trigger. Triggers can't be updated once they're created.
Problem
I am getting job details like start time and effective date from the database and on the basis of the job details, I am creating the job but what if I have got another entry for new job or the start time has been changed for the scheduled job, so how new job will be added in the job scheduler or new start time will be changed in the scheduler. I am using C#.net.