c#,asp.net-mvc,model-view-controller,controller,controller-factory
We found the solution. The Controller Factory was working as intended. The issue was actually in our routing. Before implementing this solution, we had tagged our Action Methods with the Route attribute. So, for example, for every Controller in the different assemblies we had [Route("Customer/Lookup/{name}")] public ActionResult LookupByName(string name) {...