A Quick Lesson After A Long Debugging Session (And Almost Pulling My Hair Off)
Background I originally posted this on my blog after a frustrating debugging session that nearly made me pull my hair out. Debugging Steps - Followed my own ad...
Background I originally posted this on my blog after a frustrating debugging session that nearly made me pull my hair out. Debugging Steps - Followed my own ad...
Introduction Errors happen. Sometimes they are simple, and sometimes they are very specific to your domain. C provides many built‑in exceptions, but they don’t...
Introduction: Are You Still Coding the Hard Way? Have you ever felt like .NET Core development is moving faster than your current workflow? New frameworks, clo...
Response Caching Response caching reduces the number of requests a client or proxy makes to a web server. It also reduces the amount of work the web server per...
markdown !C Loops — From for and foreach to CPU Pipelines and LLM‑Ready Codehttps://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=a...
Entity Framework Core EF Core is a popular choice for data access in modern .NET applications thanks to its clean abstractions and productivity benefits. Howeve...
¿Qué es realmente NuGet? Imagina que NuGet es el Amazon o Mercado Libre de .NET. Tú no fabricas cada tornillo de tu mueble; los pides a la tienda. - El Package...
Multiple enumeration occurs when a LINQ query generates an IEnumerable collection that is iterated multiple times. This can cause performance issues, especially...
Overview Kepler.Core is an EF Core extension that lets you improve performance by selecting only the fields you need. It supports flexible filtering, exclusion...
After years of relentless innovation, Microsoft drops .NET 10 in November 2025 with a clear message: performance, developer productivity, AI, and cloud‑native e...
Introduction Multi‑tenant SaaS on .NET is hard to get right when building from scratch, because you must solve architecture, security, and billing before you e...
Introduction As a .NET developer, I’ve long been frustrated by one persistent pain point: most validation libraries rely heavily on reflection, leading to slow...