I am trying to create a generic controller like this:
[Route(\"api/[controller]\")]
public class OrdersController : Controller where T : IOrder
{
To get a list of controllers in RC2, just get ApplicationPartManager from DependencyInjection and do this:
ApplicationPartManager appManager = ;
var controllerFeature = new ControllerFeature();
appManager.PopulateFeature(controllerFeature);
foreach(var controller in controllerFeature.Controllers)
{
...
}