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 […]

Creating a Checkbox list in PowerApps

In PowerApps a Choice field always shows as a dropdown, even when you select the ‘Checkboxes (allow multiple selections)’ option. This article is about how to change the default dropdown to a list of checkboxes. I have seen several ways of creating checkbox multivalued lists, but this way […]