If you are building an MS MVC web app using Rhino Commons you will probably want to run it as a UnitOfWorkApplication, like so:
public class GlobalApplication : UnitOfWorkApplication
If you stop there it will not work. You will get “The resource cannot be found” error when you run it. Michael Hanney has found a workaround that solves this issue. Change your Application_Start method as follows:
public override void Application_Start(object sender, EventArgs e) { base.Application_Start(sender, e); RegisterRoutes(RouteTable.Routes); }