我正在尝试在 VS 2013 中设置 Hangfire,我已经通过包管理器安装了它。但是,当我添加 app.UseHangfire (...) 代码时,如 http://docs.hangfire.io/en/latest/quick-start.html 中所述.我收到以下错误:
'Owin.IAppBuilder' does not contain a definition for 'UseHangfire' and no extension method 'UseHangfire' accepting a first argument of type 'Owin.IAppBuilder' could be found (are you missing a using directive or an assembly reference?)
你添加命名空间了吗?
using Hangfire;
您的Startup
应如下所示:
using Hangfire;
using Hangfire.SqlServer;
using Hangfire.Dashboard;
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.UseHangfire(config =>
{
config.UseSqlServerStorage("Data Source=<connectionstring>; Initial Catalog=HangFire; Trusted_Connection=true;");
config.UseServer();
//config.UseAuthorizationFilters(new AuthorizationFilter
//{
// // Users = "admin, superuser", // allow only specified users
// Roles = "admins" // allow only specified roles
//});
});
}
}
我是一名优秀的程序员,十分优秀!