12 lines
214 B
C#
12 lines
214 B
C#
using Hangfire;
|
|
using Hangfire.SqlServer;
|
|
using Hangfire.Storage.SQLite;
|
|
|
|
// 第三方擴充: Hangfire.Storage.SQLite 0.4.1
|
|
GlobalConfiguration
|
|
.Configuration
|
|
.UseSQLiteStorage("HangfireExample.db");
|
|
|
|
|
|
|