Is there a way to get the RecurringJobId from a JobId within a FilterAttribute
Example
RecurringJob.AddOrUpdate<DoThat>("MyJob", x => x.DoThis(), Cron.Minutely);
Within the FilterAttribute
public void OnPerforming(PerformingContext filterContext)
{
var jobId = filterContext.JobId;
// i would like here to get "MyJob" string value based on the jobId
var recurringJobId = ??
}