Understanding EF.Functions.Like and ILike in Entity Framework Core
For string-based searches involving patterns or partial matches, standard C# string methods can lead...
Engineering Portfolio
Explore architecture decisions, implementation notes, and production-ready engineering write-ups from real delivery experience.
For string-based searches involving patterns or partial matches, standard C# string methods can lead...
I've worked with .NET for many years. One thing I never compromise on is password storage. Plain text...
In larger applications, producers (publishing events from command handlers / services) and consumers...
React environment variables are normally injected at build time. Once the app is built, changing API...
Implementing multi-tenant configuration in .NET is most effective when global settings and...
So, .NET 9 showed up and decided Swashbuckle’s time in the templates was over. No AddSwaggerGen(), no...
When you’re wrangling a distributed system, authentication can feel like herding cats while riding a...
The Problem: Expression Trees Were a Pain // EF Core 9's special kind of...
Launching individual Chromium processes per request is fundamentally incompatible with...
Running a web server isn’t just about handling requests—it's about lifecycle control. You want...
Let's crack open that EF Core mystery: Why does AddAsync() exist when there's no UpdateAsync() or...