Earlier this week I ran across Scott Hanselman\'s post about background processing in ASP.NET (http://www.hanselman.com/blog/HowToRunBackgroundTasksInASPNET.aspx). I\'ve written
Public Sub Configure(app As IAppBuilder)
Dim act = Sub(config As IBootstrapperConfiguration)
config.UseSqlServerStorage("<...>")
config.UseServer()
End Sub
app.UseHangfire(act)
End Sub
For more on creating multi line lambdas in VB.Net, refer to the MSDN.