Tag: controllers
-
Dynamic loading controllers in .NET Core
I needed to load dynamically some controllers to the Stankins application .Dynamic like in – written in some text file,then loading them,The best reference was https://www.strathweb.com/2018/04/generic-and-dynamically-generated-controllers-in-asp-net-core-mvc/ . But it was not enough : what I wanted is to write the controller in some text file and compile and load them. First problem ; What about…