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

Adding Log4Net to .Net Core

Log4Net has become somewhat a de facto standard for logging in .Net applications, and I personally have used it in nearly every application I’ve written for quite some time. Although .Net Core does have some baked in logging, if you prefer to use Log4Net (or need to), then […]

Querying a JSON Array in SQL

In this article I will run through a problem I overcame where I needed to query a JSON array of attributes for each a record. I was working on a Stored Procedure that was querying JSON using REPLACE, SUBSTRING and a number of CHARINDEX‘s for every attribute. This […]