Timeouts, data access, and testing
Sixteen varied .NET reads cover timeout strategy, ASP.NET Core, EF Core, Dapper, MAUI, TDD, and DI automation for real-world apps.
Jasen's top three picks
- 1 The Right Timeout Strategy for .NET — 3 Levels You Must Configure
medium.com
A practical timeout breakdown—useful if “just raise the limit” has become your team’s default response.
- 2 A Complete Guide to ASP.NET Development Services in 2026
medium.com
ASP.NET Core, error handling, and data protection: the kind of fundamentals that save you later.
- 3 How Do I Fix “Object Reference Not Set to an Instance of an Object” in C#?
c-sharpcorner.com
Cursor paging plus EF Core transactions is a strong combo for anyone tuning real data-heavy endpoints.
Editor's note
I pulled together a pretty practical mix this time: troubleshooting, data access, architecture, and a bit of MAUI news. The timeout piece and the cursor pagination article both stand out because they address problems most teams hit in production, not in toy demos. I also liked the EF Core transactions and TDD entries for the same reason—they’re hands-on and immediately usable.
Today's articles
The Right Timeout Strategy for .NET — 3 Levels You Must Configure
medium.com
(And why your “just increase it” fix keeps making things worse) Continue reading on AWS in Plain English »
Topics: .NET Core Performance
Read articleA Complete Guide to ASP.NET Development Services in 2026
medium.com
In today’s fast-moving digital world, organizations need sophisticated, secure, and scalable web applications to be competitive. Selecting…
Topics: ASP.NET Core .NET Core
Read articleHow Do I Fix “Object Reference Not Set to an Instance of an Object” in C#?
c-sharpcorner.com
Learn simple, clear, and practical ways to fix the common C# error "Object reference not set to an instance of an object." Understand why it happens, how to identify the root cause, and how ...
Read article(RoomSharp) Source-Generated Data Layer for Modern .NET
medium.com
If you’ve ever envied Android’s Room stack and wished you could have the same attribute-driven ergonomics, source-generated DAOs, and… Continue reading on JavaScript in Plain English »
Topics: .NET 9 Source Generators
Read articleBuilding your own named entity recognition model in .NET
medium.com
Imagine you’re reading a captivating novel or a breaking news article. As you move through the sentences, you effortlessly pick out the…
Read articleElegant Global Error Handling Using Middleware In .NET 9
medium.com
If you want the full source code, join our community: Here
Topics: ASP.NET Core .NET 9
Read article⚡ Extremely FAST Paging With Cursor Pagination & Index Seek
medium.com
SQL Server • PostgreSQL • MySQL • MongoDB Compared — with Full .NET 9 Code (Part 1)
Topics: Performance PostgreSQL SQL Server
Read articleStop writing stopwatch code to everywhere, here is a story about automatic method profiling in .NET
medium.com
Let me tell you about a problem I kept running into. You know that moment when your API starts slowing down, and you’re sitting there… Continue reading on The Syntax Hub »
Topics: Performance Profiling
Read article.NET MAUI Community Standup - .NET 10 Announcements Roundup
youtube.com
Mastering Callbacks in C#: Delegates, Events, Async/Await & Real UI Examples (Complete Guide)
Read articleTDD in .NET: Practicing with String Calculator
medium.com
Practicing TDD with a simple String Calculator
Topics: Test-Driven Development Unit Testing
Read articleUsing ASP.NET Core Data Protection with SQL Server
c-sharpcorner.com
Secure ASP.NET Core apps by storing Data Protection keys in SQL Server. Learn to encrypt data, manage keys, and ensure consistency across multiple servers.
Topics: ASP.NET Core Security SQL Server
Read articleWorking With Database Transactions in EF Core 9: A Deep-Dive Guide for Real-World .NET
medium.com
By someone who has broken production databases so you don’t have to.
Topics: .NET 9 EF Core Performance
Read articleHow To Use The Specification Design Pattern in .NET 9
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Topics: Design Patterns .NET 9 Solid Principles
Read articleFrom EF Core to Dapper — Is Raw SQL Worth the Hype?
medium.com
📚 Found this article useful? You’ll love what I have in my store — Shop Now. What’s the story about? Everyone raves about Dapper’s raw…
Topics: Dapper EF Core SQL Server
Read articleHow to Use the Domain Event Pattern | DDD, Clean Architecture, .NET 10
medium.com
Domain events are the moment your domain model stops being a boring CRUD database wrapper and starts acting like an actual system.
Topics: Clean Architecture Domain-Driven Design .NET 10
Read articleAutomatically Registering Services in .NET DI with Scrutor
medium.com
.NET contains a very basic DI (Dependency Injection) container sufficient to meet the application’s own needs. This built-in container is…
Topics: ASP.NET Core Solid Principles Source Generators
Read article