:::: MENU ::::

Monday, July 25, 2016

Logging is a critical feature in any piece of software. Logging is really so boring but it is so important to have logging in place when starting a new solution, it will save you so much time and be a significant help in the investigation of the essence of problems. With ASP.NET Core 1.0, we don't need another third party library to log our application. It is out of the box! Since ASP.NET Core is modular so all we need is to install the following...

Thursday, July 21, 2016

Recently, a question was asked on Stack Overflow regarding how to go about extending an existing ASP.NET MVC Controller that was present within another assembly or project (i.e. external to the "main" MVC application), so I thought I would take a bit of time to cover how one might handle this scenario. The Basic Idea Let's say you have two projects : ProjectA - Your main MVC application. ProjectB - Just a simple class library. What...