I\'m attempting to create a generic controller, ie:
public class MyController : Controller where T : SomeType { ... }
However, whe
If i was you, i'd get the MVC source and create a test MVC project with the source code so you can examine where the exception is generated and see what you can do about your generic idea and the enforced "*controller" naming convention.