英文:
Mock HttpContext.Current in HangFire
问题
"HttpContext.Current"在使用Hang Fire时为null!因为我想要使用"await UserManager.FindAsync();",是否应该将"HttpContext.Current"注入到HangFire中?如何实现?
英文:
HttpContext.Current
is null when fire job in Hang Fire!!
because i want to use await UserManager.FindAsync();
should inject HttpContext.Current
to HangFire or not and How??
答案1
得分: 1
不要设置HttpContext.Current
当您不处理HTTP请求时。
相反,提取所有必要的信息并明确传递给后台作业。
英文:
You should not set HttpContext.Current
when you are not handling an HTTP request.
Instead, extract all the information necessary and pass it explicitly to your background job.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论