Cloud savings, EF Core, and .NET modernization
A varied .NET roundup covering cloud cost reduction, EF Core performance, transactional outbox, secure uploads, CLR internals, and legacy SOAP migration.
Jasen's top three picks
- 1 The .NET Core Feature That Saved Us 40% Cloud Cost Overnight
medium.com
A real-world example of trimming cloud spend by 40% makes this one immediately useful for teams watching their bills.
- 2 Implementing Transactional Outbox Pattern in .NET Microservices — Ensuring Eventual Consistency
medium.com
Transactional outbox remains one of those patterns that looks academic until you need reliable event publishing across services.
- 3 Secure file upload validation in .NET: A layered approach
medium.com
File upload validation is a deceptively broad security problem, and this layered approach is the right way to think about it.
Editor's note
I curated a pretty mixed lineup today, with practical wins alongside fundamentals. The cloud-cost post and the transactional outbox article stood out because both tie architecture choices directly to real operational impact. I also liked the CLR deep dive and the SOAP modernization piece for teams keeping older systems alive.
Today's articles
The .NET Core Feature That Saved Us 40% Cloud Cost Overnight
medium.com
When working in the cloud, one fear always looms overhead — 👉 The Monthly Bill Continue reading on Dot Net, API & SQL Learning »
Topics: Azure .NET Core Performance
Read articleImplementing Transactional Outbox Pattern in .NET Microservices — Ensuring Eventual Consistency
medium.com
In monolithic systems, database operations rely on ACID principles. A transaction either completes entirely or not at all. However, in…
Topics: CQRS Design Patterns Event Sourcing
Read articleSecure file upload validation in .NET: A layered approach
medium.com
I thought file uploads were simple… until I saw how often they aren’t. This article shows a practical .NET baseline that covers common…
Topics: ASP.NET Core Security
Read articleAdd Images to PDFs in C#: The Definitive Guide for Modern .NET Projects
medium.com
If you’ve ever needed to add images to PDF in C#, you know it’s more than a checkbox on a requirements list. Whether you’re generating…
Read articleEF Core Tricks for Bulk Reading Large Data Sets
codingsonata.medium.com
Dive into the EF Core Tricks for Bulk reading Large Data Sets by exploring the 5 methods of Entity Framework Extensions of ZZZ Projects
Topics: EF Core Performance
Read articleException Handling in C#: Why Your App Still Crashes Even With Try-Catch
medium.com
I used to think my application was “safe” because I wrapped everything in try-catch.
Topics: C# Unit Testing
Read articleWhat the CLR Really Does While Your App Is Running
medium.com
Most developers know CLR stands for Common Language Runtime. Fewer developers know what it’s actually doing every millisecond your app is…
Topics: .NET Core Performance
Read article7 Entity Framework Core Optimization Techniques
medium.com
A summary of my work during my internship on a picking command handler, optimizing database operations in .NET applications with examples…
Topics: EF Core Performance
Read articleModernizing .NET — Part 7: From Web References to Service References
medium.com
How to migrate legacy SOAP clients from Web References in .NET Framework to Service References in .NET Core using dotnet-svcutil.
Topics: .NET Core .NET Framework
Read articleDotnet vs. Java in 2026: One for the Brain, One for the Backbone.
medium.com
Hi everyone. I am a .NET developer. I’m new to writing blogs, and my English is not perfect. I make spelling mistakes and my sentences are…
Read article⚠ Redis Batch Deadlock — A Hidden Async Bug
mahraz-hasnat.medium.com
While working with StackExchange.Redis, I faced a strange issue. My code looked correct, but this line never completed:
Topics: Performance Redis
Read articleThe Realistic .NET Developer Roadmap for Absolute Beginners
medium.com
Most Roadmaps Assume Some Experience
Topics: .NET Core
Read articleExtremely FAST Caching Repository With Decorator Pattern in ASP.NET Core
medium.com
If You want the full source code Click :Here
Topics: ASP.NET Core Design Patterns Performance
Read articleCode Coverage in .NET: % to confidence
medium.com
When we say “code coverage,” most people think it’s a single percentage that tells whether our tests are “good.” In reality, coverage is a…
Topics: Performance Unit Testing
Read article