Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
BackgroundJob - using IRepository<entity, int> for retrieval and writing changes The issue is when triggering a BackgroundJob and using IRepository<entity, int> injected, the calls to the repository for the respective repo fails to find the entity, exception notes no entity exists, however the entity is in the database. Can you think of why this is happening?
BackgroundJob - using AppServices injected Further when injecting AppServices and calling the retrieval methods, the Authorize permissions restricts use for the Background job, how do we work around this?
BackgroundJob - making Async calls How can this be done, do I have to call methods synchronously?