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