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 More
With c# 12 (.Net 8), we finally get primary constructors for classes and structs. I’ve wanted primary constructors since I started…
Read More
Middleware components in an ASP.NET Core application play a crucial role in handling HTTP requests and responses. Their positioning in your…
Read More
Reliable and efficient monitoring is crucial for managing the health of applications. Especially in a microservices architecture, you want to know…
Read More
aka things that sound alike Levenshtein distance and Metaphone 3 are two different algorithms primarily used in the context of text…
Read More
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 More
I asked ChatGPT4 what a DDD is in c#. It came back with a decent answer. In Domain-Driven Design (DDD)…
Read More
Good Post with DB migrations while the deploying is rolling out https://andrewlock.net/series/deploying-asp-net-core-applications-to-kubernetes
Read More
I often try to see the delta between two lists to see what needs to be added or deleted. Microsoft finally…
Read More
When I have a long running stored procedure, I can never remember which timeout to set. I’m putting this here so…
Read More
When writing a windows service using c# (or vb.net), you can install the service locally using?installutil.exe. ?You can simply just install…
Read More