我已成功将Hangfire安装到我的ASP.NET Core MVC应用程序中。我看到它将所有表添加到我的数据库中,我可以访问仪表板。
我需要弄清楚我的代码中应该将Hangfire代码放在每30分钟运行一次的定期作业中。基本上,每30分钟拨打一次
_notificationRepository.GetNotifications()
.Where(n => n.NotificationDate = DateTime.Now()
&& n.CreatedBy == currentLoggedInUser)