Vue js 3 examples
This article provides links to my Vue.js 3 examples.
This article provides links to my Vue.js 3 examples.
Dapper provides the basis for a great database access toolkit. Wrapping its primitives in a small, general-purpose repository enables concise, clear code. The repository interface presented here is highly-opinionated–your mileage may vary.
Dapper is a superb alternative to Entity Framework. With just a little extra elbow grease, it provides a performant (and vastly more transparent) way to do your application IO. This article looks at using Dapper with .NET’s dependency injection.
This is the excerpt
Serilog is a rich and deep logging package. Its capabilities are well beyond what .NET’s basic ILogger offers. However, with its power comes lots of knobs and switches. This article provides the minimal amount of code need to log to a text file with Serilog. This example is essentially doing the same thing that the …
Minimal code needed to log to a text file with Serilog Read More »
Good programmers write code. Better programmers reuse code. This article is a list of my favorite Nuget packages.
PowerShell is intimidating and goofy, but powerful, Windows scripting language. This article is a collection of PowerShell snippets.
This article shows how to use the “Microsoft.Extensions.Configuration” Nuget package to use an “appsettings.json” file with a C# 10 console application.
Blazor’s RenderFragment is one of the keys to creating highly-flexible Razor components. It’s also critical to creating great generic components.