Now that I have all the Enums and Interfaces being generated, the next step is to generate my services from my controllers. All of my controllers are derived from a single base class. It would be great if there was a Symbols filter that selected classes that were derived from a base class rather than having to find all the controllers.
This is especially important for me because I am still on ASP.Net MVC (haven't had time to re-write for .Net Core), so all of my API Controllers and my MVC Controllers end with the word Controller. So using a name filter doesn't really work. I am hoping I can capture just the right set of controllers through the namespace, but the best would be to filter by a derived class.
Hi,
Now that I have all the Enums and Interfaces being generated, the next step is to generate my services from my controllers. All of my controllers are derived from a single base class. It would be great if there was a Symbols filter that selected classes that were derived from a base class rather than having to find all the controllers.
This is especially important for me because I am still on ASP.Net MVC (haven't had time to re-write for .Net Core), so all of my API Controllers and my MVC Controllers end with the word Controller. So using a name filter doesn't really work. I am hoping I can capture just the right set of controllers through the namespace, but the best would be to filter by a derived class.
Thanks!