Category: .net
Primary Constructors in C# 12
With c# 12 (.Net 8), we finally get primary constructors for classes and structs. I’ve wanted primary constructors since I started…
Read MoreProper Ordering of Middleware Components in ASP.NET Core
Middleware components in an ASP.NET Core application play a crucial role in handling HTTP requests and responses. Their positioning in your…
Read MoreBuilding Resilient Applications with .NET Core Health Checks Using AspNetCore.Diagnostics.HealthChecks
Reliable and efficient monitoring is crucial for managing the health of applications. Especially in a microservices architecture, you want to know…
Read MoreMy Notes: Levenshtein distance and/or Metaphone
aka things that sound alike Levenshtein distance and Metaphone 3 are two different algorithms primarily used in the context of text…
Read MoreMy Notes: Working with OpenIddict Identity
https://documentation.openiddict.com/ Example Configuration Endpoint PCKE Flow POST FormData to get back Token Data Form Data Example: Prefix constants from Openiddict ept:…
Read MoreDomain-Driven Design (DDD) using C# from ChatGPT
I asked ChatGPT4 what a DDD is in c#. It came back with a decent answer. In Domain-Driven Design (DDD)…
Read MoreMy Notes: Deploying Angular/.Net Core App to Kubernetes
Good Post with DB migrations while the deploying is rolling out https://andrewlock.net/series/deploying-asp-net-core-applications-to-kubernetes
Read MoreMy Notes – Standup .Net API with Angular on Ubuntu
This is my notes on how I setup a .net core web api with an Angular frontend on a Ubuntu Linux…
Read More.NET 6 IntersectBy and ExceptBy
I often try to see the delta between two lists to see what needs to be added or deleted. Microsoft finally…
Read More