Debugging an MVC call

Sometimes, when trying to debug an MVC method, you need to inspect what the app is receiving from the client. You could use a sniffer, like WireShark, but I believe there is an easier way. The Problem Some time ago I was tasked with integrating with a third […]

Dependency Injection in a Console App

I create a lot of Console applications, mainly for prototypes or small one-off jobs, but sometimes I want to to do more. For those applications I want to use Dependency Injection and things like appsettings and Entity Framework. To save time on trying to remember how to do […]