Using ASP.NET Core to Find Controllers in Your App

In this post I describe application parts and how ASP.NET Core uses them to find the controllers in your app. I then show how you can retrieve the list at runtime for debugging purposes. Debugging a missing controller A while ago I was converting an ASP.NET application to ASP.NET Core. The solution had many class […]

Read more
How to Perform Database Logging Using NLog in ASP.NET Core

NLog is a highly efficient logging framework which helps us enabling logging to almost all logging source format including Console, File, Database logging, etc. High-end logging requirements like Database or File or Rolling File logging provider are still not available through the .NET Core framework. Currently, the available ASP.NET Core version logging framework is already very rich and gives us a […]

Read more