如何配置" Hangfire.Net"在.NET核心控制台应用程序?

时间:2018-04-03 06:11:21

标签: c# .net-core console-application hangfire

我正在创建一个控制台应用程序,我需要在其中并行执行某些任务,因此我尝试使用Hangfire.Net。

有人可以建议我如何在.NET Core控制台应用程序中配置Hangfire.Net吗?

亲切的问候,

Jatinder

1 个答案:

答案 0 :(得分:1)

.Net Core中的Hangfire配置非常好,这将把它存储在数据库中。

GlobalConfiguration.Configuration.UseSqlServerStorage("connection_string");

using (var server = new BackgroundJobServer())
    {
     Console.WriteLine("Hangfire Server started. Press any key to exit...");
     Console.ReadKey();
    }

代码摘自documentation