Tuesday is here, fellow code wizards, where we peel back the layers and scrutinize the world of .NET with the precision of a master chef perfecting a classic dish. While yesterday's echoes fade, today we delve deeper into the intricacies that transform base code into a work of art. As you sip your coffee and ready your tools, prepare to explore curated gems that promise not just to inform, but perhaps to inspire a gentle 'aha' moment or two. Here's to making every line count, like a well-composed jazz solo, in our quest for .NET mastery.

Today's Articles

Middleware in ASP.NET Core — Explained Like You’re Coding Daily but Still Unsure What It Does

https://medium.com/@sweetondonie/middleware-in-asp-net-core-explained-like-youre-coding-daily-but-still-unsure-what-it-does-9fbc7fe1acb4

If you’ve ever stared at an app.UseAuthentication(), app.UseRouting(), and app.UseAuthorization() in Program.cs and thought:

99% of C# Devs Miss This Async Bug — It Crashes Real Apps Silently

https://medium.com/@mohsho10/99-of-c-devs-miss-this-async-bug-it-crashes-real-apps-silently-34a3a9489329

“The worst bugs are the ones you never see.” And async void is how you invite them in. Continue reading on Towards Dev »

️ Using CSharpier Per-Solution in JetBrains Rider

https://rafee03.medium.com/%EF%B8%8F-using-csharpier-per-solution-in-jetbrains-rider-3b8677c490fd

If you’re working in .NET, you probably know how easy and powerful the CSharpier tool is for keeping your code clean and consistent. If…

Building an Inventory-Management System with ASP.NET 9

https://medium.com/@michaelmaurice410/building-an-inventory-management-system-with-asp-net-9-c04cc38cc7ef

📦 Inventory Management System (.NET 9)

️ Authentication vs Authorization in ASP.NET Core

https://medium.com/@sweetondonie/%EF%B8%8F-authentication-vs-authorization-in-asp-net-core-792c46760c25

Explained Like You Use C# Every Day but Still Google “JWT vs Role” Weekly

From EF Core to Dapper — Is Raw SQL Worth the Hype?

https://medium.com/@michaelmaurice410/from-ef-core-to-dapper-is-raw-sql-worth-the-hype-7dc99f92b21f

What’s the story about? Everyone raves about Dapper’s raw speed and low overhead — but is ditching Entity Framework Core really the…

Logging in ASP.NET Core Web API Using MongoDB

https://www.c-sharpcorner.com/article/logging-in-asp-net-core-web-api-using-mongodb/

Logging is one of the most important parts of building a real-world application. It helps you track errors, monitor behavior, and understand what your app is doing behind the scenes.

Stop Misusing async/await: 9 Hidden C# Pitfalls That Slow You Down

https://medium.com/@mohsho10/stop-misusing-async-await-hidden-c-pitfalls-that-slow-you-down-568a41baa58d

Most C# developers loveasync/await— and rightly so. It's elegant, non-blocking, and makes code readable. But beneath the surface lies a… Continue reading on Towards Dev »

Which .NET Mapping Library Should You Use?

https://medium.com/@ashokreddy343/which-net-mapping-library-should-you-use-eafa0d191993

Introduction Continue reading on Towards Dev »

Don't reinvent the wheel - configuration

https://josef.codes/dont-reinvent-the-wheel-configuration-dotnet-core/

Avoid creating custom environment helpers - use the built-in functionality instead.

Run C# File Instantly with .NET 10

https://www.c-sharpcorner.com/article/run-c-sharp-file-instantly-with-net-10/

Microsoft has introduced a groundbreaking feature in .NET 10 Preview 4, the ability to run C# files directly using dotnet run app.cs.

Professional Code and Best Practices with C# 14 and .NET 10

https://www.c-sharpcorner.com/article/professional-code-and-best-practices-with-c-sharp-14-and-net-10/

Professional Code and Best Practices with C# 14 and .NET 10

Why Most .NET Developers Miss Out on Azure’s Best Features (And How Not to Be One of Them)

https://medium.com/turbo-net/why-most-net-developers-miss-out-on-azures-best-features-and-how-not-to-be-one-of-them-38df10a94292?source=rss------dotnet-5

You work with .NET. You’ve deployed to Azure. But are you using it the way it’s meant to be used? Continue reading on Turbo .NET »

Guide to Add Custom Modules in ABP.IO App

https://www.c-sharpcorner.com/article/guide-to-add-custom-modules-in-abp-io-app2/

Learn how to add custom modules to your ABP.IO app with this simple, developer-friendly guide. Covers backend setup and Angular integration step by step.

WebSocket vs REST in .NET: Key Differences and Use Cases

https://medium.com/@hasanmcse/websocket-vs-rest-in-net-key-differences-and-use-cases-c63d733afb98

When building modern .NET applications, choosing between WebSocket and REST APIs can be critical for performance, scalability, and…

On .NET Live - On .NET Live - Source Generators in Jinget

https://www.youtube.com/watch?v=GHCPO-gusF4

Flight Ticketing System with Decorator and Factory Patterns in C#

https://mcuslu.medium.com/flight-ticketing-system-with-decorator-and-factory-patterns-in-c-d962f759433d

In modern software architecture, flexibility and extensibility are essential. Today, we’ll walk through a real-world example where we…

“Why Is My UI Slow?!” — 7 Killer Techniques to Supercharge .NET App Performance

https://dotnetfullstackdev.medium.com/why-is-my-ui-slow-7-killer-techniques-to-supercharge-net-app-performance-769667918ccb

Ever clicked a button on your app and thought, “Why is this taking forever?!” If your .NET application’s UI is slow when loading data…

AppSettings & Configuration in ASP.NET Core — What’s Going On?

https://medium.com/@sweetondonie/appsettings-configuration-in-asp-net-core-whats-going-on-f6387e55c462

You’re writing C# every day in an ASP.NET Core project.

Modern C# in 2025: What You Should Be Using (and What to Retire)

https://www.c-sharpcorner.com/article/modern-c-sharp-in-2025-what-you-should-be-using-and-what-to-retire/

Explore the latest C# 12 and .NET 8 features in 2025, including primary constructors and required properties, while learning modern practices to write cleaner, faster, and more maintainable C# code.

Understanding Dependency Injection in .NET

https://medium.com/@venkataramanaguptha/understanding-dependency-injection-in-net-2f635cb0e9c0

In Part 1, we explored Dependency Injection (DI) lifetimes using examples from a Legal Practice Management system. In this continuation…

The Cleanest Way to Generate HTML from C#

https://medium.com/@kohzadi90/the-cleanest-way-to-generate-html-from-c-f7cfeb20e650

Say goodbye to HTML spaghetti and hello to testable, designer-friendly templates using Stubble. Continue reading on Art of Data Engineering »

The Working of .NET Garbage Collection: Heap, Stack, Generations Explained

https://medium.com/@kroshpan/the-working-of-net-garbage-collection-heap-stack-generations-explained-6017ed9f193b?source=rss------dotnet-5

Write efficient C# code with fewer memory leaks.

Keep Reading

No posts found