How can I express a schedule job that triggers every x min between 7:20AM-8:30PM Mon-Sun in Quartz.Net? I'm a bit confused and the testing would take time to confirm.
According to https://www.freeformatter.com/cron-expression-generator-quartz.html it would be "0 20-30 7-18 ? * MON,TUE,WED,THU,FRI,SAT,SUN *", but how can I express the 7:20-18:30?
Above expression generates next execution something like this, which is not what I expected.
Tue Sep 15 07:20:00 UTC 2020 Tue Sep 15 07:21:00 UTC 2020 Tue Sep 15 07:22:00 UTC 2020 Tue Sep 15 07:23:00 UTC 2020 Tue Sep 15 07:24:00 UTC 2020 Tue Sep 15 07:25:00 UTC 2020 Tue Sep 15 07:26:00 UTC 2020 Tue Sep 15 07:27:00 UTC 2020 Tue Sep 15 07:28:00 UTC 2020 Tue Sep 15 07:29:00 UTC 2020
And described as "At second :00, every minute between :20 and :30, every hour between 07am and 18pm, on every Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday, every month".