I have an ASP.net Core 6 project where I added Quartz to my services, like described here:
This works and allows you to configure jobs and triggers during app startup.
However, what if I want to modify/add/remove a job or trigger while the app is running? I would need to retrieve the underlying IScheduler instance (ideally through the DI mechanism), but I don't know the proper way to do it in an ASP.net Core app.
So, how can you access the scheduler instance from DI in a .net core project?