Home Archive Coding agents, MVC, and runtime internals – .NET News Daily Issue #393 (Feb 17, 2026)

Editor's note

I put together another mixed lineup here, from teaching tools to deep framework mechanics. The Coding Agent Explorer stands out as a practical way to understand how AI coding agents behave, and the async runtime piece is a good read for anyone tracking where .NET is headed. I also liked the EF Core transactions and caching articles because they focus on everyday reliability and performance.

Coding agents, MVC, and runtime internals

Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

Introducing the Coding Agent Explorer (.NET)

https://nestenius.se/ai/introducing-the-coding-agent-explorer-net/

I’m excited to introduce you to the Coding Agent Explorer, a new open-source .NET teaching tool I’ve created that lets you see exactly what happens under the hood when an AI coding agent works on your...

Article preview

C# ASP.NET Core MVC: Building Your First Application — A Complete Guide from Models to Controllers

https://medium.com/@sumeetdugg022/c-asp-net-core-mvc-building-your-first-application-a-complete-guide-from-models-to-controllers-9579b66be95c?source=rss------csharp-5

A Step-by-Step Tutorial for Creating Models, Views, and Controllers from Scratch

Article preview

Scalar for .NET Minimal APIs: A Modern Alternative to Swagger UI

https://medium.com/@wbayrakvlad/scalar-for-net-minimal-apis-a-modern-alternative-to-swagger-ui-eca59d71f611?source=rss------dotnet-5

I’m sure every web developer has used (or at least heard of) OpenAPI. In the .NET ecosystem, Swagger has been the de facto standard for…

Article preview

LINQ in C# — The Complete Cheat Sheet

https://medium.com/@quizzesforyou/linq-in-c-the-complete-cheat-sheet-c19213e449ec?source=rss------csharp-5

C# Linq cheatsheet with examples

Article preview

Modernizing Legacy .NET Applications Without Disrupting Production Systems

https://medium.com/@faciletechnolab_52308/modernizing-legacy-net-applications-without-disrupting-production-systems-7404d6ab2335?source=rss------dotnet-5

Blog Originaly Published on Facile Technolab

Article preview

Building a Distributed Key-Value Store in .NET

https://medium.com/@heartbeats.zero/building-a-distributed-key-value-store-in-net-0e6a54a37099?source=rss------dotnet-5

Introducing Clustron DKV

Article preview

C# .Net 10 MinimalAPI: Weather Service Migration from Azure to AWS — Part 4

https://pkoretic.medium.com/c-net-10-minimalapi-weather-service-migration-from-azure-to-aws-part-4-c06e082165fb?source=rss------dotnet-5

You never know when you will need to do this.

Article preview

Mastering Database Transactions with Entity Framework Core

https://www.trevoirwilliams.com/mastering-database-transactions-with-entity-framework-core/

This article explores a crucial aspect of database management: database transactions using Entity Framework Core. Explore how to ensure the integrity of our operations when dealing with multiple datab...

Article preview

How to Implement Custom Response Caching in ASP.NET Core

https://www.c-sharpcorner.com/article/how-to-implement-custom-response-caching-in-asp-net-core/

Boost ASP.NET Core performance with response caching! Learn how to implement it using NCache for scalable, multi-server environments. Reduce latency and server load.

Article preview

Why Your App Feels Fast at First — Then Slowly Degrades

https://medium.com/@sweetondonie/why-your-app-feels-fast-at-first-then-slowly-degrades-455c80706e1f?source=rss------dotnet-5

A Simple Code Example + Visual Mental Model

Article preview

A .NET Developer’s Perspective on Node.js — And Why One Hand Should Be There Too

https://medium.com/@enesefetokta009/a-net-developers-perspective-on-node-js-and-why-one-hand-should-be-there-too-4adb8c5df318?source=rss------dotnet-5

For more than four years, I’ve been building software within the .NET ecosystem. To me, .NET is not just a framework it’s a structured…

Article preview

Nobody Tells You How .NET Core Really Runs Your Code — Here’s the Truth Every Developer Should Know

https://medium.com/@curiosity.orbit/nobody-tells-you-how-net-core-really-runs-your-code-heres-the-truth-every-developer-should-know-98e7b821298b?source=rss------dotnet-5

Have you ever opened your .NET Core project for the first time, looked at Program.cs, and thought, “Okay… but what exactly happens after I…

Article preview

ASP.NET MVC vs ASP.NET Core MVC

https://www.c-sharpcorner.com/blogs/asp-net-mvc-vs-asp-net-core-mvc

Confused about ASP.NET MVC vs. ASP.NET Core MVC? This guide breaks down the key differences: platform support, performance, project structure, configuration, and more! Learn which is right for you.

Article preview

New runtime async is hitting .NET 11 - Part 1

https://steven-giesel.com/blogPost/1fb10ed2-df84-4080-b660-72c04a4cc674

Some time back I wrote about "async2 - The .NET Runtime Async experiment concludes" basically moving the async state machine into the runtime. Now with .NET 11 we are seeing the fruits of th...

Article preview

Jasen's take on today's picks

Introducing the Coding Agent Explorer (.NET)

A teaching tool for AI coding agents that shows what they do under the hood, which is a useful way to demystify agent workflows.

C# ASP.NET Core MVC: Building Your First Application — A Complete Guide from Models to Controllers

A complete MVC walkthrough for beginners who want to build a first ASP.NET Core app from models through controllers.

Scalar for .NET Minimal APIs: A Modern Alternative to Swagger UI

A modern look at API documentation options, comparing Scalar with Swagger UI for Minimal APIs.

LINQ in C# — The Complete Cheat Sheet

A LINQ cheat sheet is always handy when you want syntax reminders without digging through docs.

Modernizing Legacy .NET Applications Without Disrupting Production Systems

A practical modernization article for teams that need to evolve legacy .NET systems without taking production risk.

Building a Distributed Key-Value Store in .NET

A distributed key-value store build that scratches the systems-design itch and shows how far .NET can go.

C# .Net 10 MinimalAPI: Weather Service Migration from Azure to AWS — Part 4

A migration story about moving a Weather Service from Azure to AWS using .NET 10 Minimal APIs.

Mastering Database Transactions with Entity Framework Core

A solid EF Core article focused on database transactions, with the kind of reliability details app teams often miss.

How to Implement Custom Response Caching in ASP.NET Core

A response-caching guide for ASP.NET Core that aims at lower latency and server load in multi-server setups.

Why Your App Feels Fast at First — Then Slowly Degrades

A performance-minded piece on why applications feel fast early and then slowly degrade over time.

A .NET Developer’s Perspective on Node.js — And Why One Hand Should Be There Too

A developer-perspective article that argues for understanding Node.js alongside .NET, which is a fair cross-platform take.

Nobody Tells You How .NET Core Really Runs Your Code — Here’s the Truth Every Developer Should Know

A runtime-internals explainer about how .NET Core really runs your code, aimed at developers who want a clearer mental model.

ASP.NET MVC vs ASP.NET Core MVC

A comparison of ASP.NET MVC and ASP.NET Core MVC that helps with platform and migration decisions.

New runtime async is hitting .NET 11 - Part 1

A .NET 11 async runtime update that should interest readers following the evolution of async behavior and state machines.

Related issues

📬 Get daily .NET content delivered to your inbox