Hey,
I am using Recurring job Scheduler to fire some background APIs for my application but the resultset of those methods is huge and contains half a million records which is being written in persistence DB(SQL server). How can I avoid that.
RecurringJob.AddOrUpdate($"SelectAll{count} ServiceProductBusiness",() => NinjectKernel<ServiceProductBusiness>.FetchBusiness().SelectAll(paraDictionary), $"{min} {hour} * * *",TimeZoneInfo.Local);