Home Archive AI tools, .NET 10, and cache fixes – .NET News Daily Issue #370 (Jan 15, 2026)

Editor's note

I put together a deliberately mixed issue this time: AI-assisted editing in VS Code sits right alongside the everyday .NET work of caching, DI, and async code. The EF Core 10 production query piece and the cache stampede fix stood out because they speak directly to performance in real systems.

AI tools, .NET 10, and cache fixes

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

Share your testimonial →

Today's Articles

AI Faceoff: Customized VS Code Commands

https://visualstudiomagazine.com/Articles/2026/01/09/AI-Faceoff-Customized-VS-Code-Commands.aspx

After a long-unused VS Code extension stopped working, I compared multiple AI tools to recreate the same HTML-wrapping workflow using built-in snippets and keybindings. Mileage among the systems varie...

Article preview

Top 10 Errors Found in C# Projects in 2025

https://isitvritra101.medium.com/top-10-errors-found-in-c-projects-in-2025-372958cee3e6?source=rss------csharp-5

The “optimization” that was supposed to speed things up? It created heap allocations on every call. Made everything slower.

Article preview

Twelve months of agentic AI code-assist

https://staffordwilliams.com/blog/2026/01/04/twelve-months-of-agentic/

2025 was the year of agentic AI code assistants and programming will never be the same. For some, these tools have become a critical part of their daily workflow and produce most, if not all, of the c...

Article preview

Hands On with New Experimental GitHub Copilot 'Agent Skills' in VS Code

https://visualstudiomagazine.com/Articles/2026/01/11/Hand-on-with-New-GitHub-Copilot-Agent-Skills-in-VS-Code.aspx

Visual Studio Code 1.108 introduces Agent Skills for GitHub Copilot, enabling developers to define reusable, domain-specific automation that can handle everything from code refactoring to custom text ...

Article preview

Multi-Provider Feature Flags in .NET with OpenFeature

https://medium.com/@askpt/multi-provider-feature-flags-in-net-with-openfeature-7808b1f5950e?source=rss------dotnet-5

Learn how to use Multi-Provider in OpenFeature in dotnet

Article preview

Custom Validator in ASP.NET Core MVC (Beginner-Friendly)

https://medium.com/@syeedmdtalha/custom-validator-in-asp-net-core-mvc-beginner-friendly-8625d1178492?source=rss------dotnet-5

Target audience: Absolute beginners learning ASP.NET MVC / ASP.NET Core MVC

Article preview

Dependency Injection Made Simple: A Practical .NET Core Guide

https://www.c-sharpcorner.com/article/dependency-injection-made-simple-a-practical-net-core-guide/

Unlock the power of Dependency Injection (DI) in ASP.NET Core! Learn how DI promotes loose coupling, testability, and scalability for robust .NET applications.

Article preview

.NET Concurrency, Parallelism and async/await

https://medium.com/@patrickduch93/net-concurrency-parallelism-and-async-await-dbf1aafb47bf?source=rss------dotnet-5

Concurrency, parallelism, and async/await are among the most misunderstood concepts in modern .NET applications. They are often mixed…

Article preview

C# 14 and Clean Architecture: modeling expressive domains without boilerplate

https://medium.com/@anderson.buenogod/c-14-and-clean-architecture-modeling-expressive-domains-without-boilerplate-518bddfc8557?source=rss------csharp-5

The best way to evaluate a language feature is simple: does it reduce modeling and maintenance cost without compromising architecture? In…

Article preview

How We Fixed Our Cache Stampede Problem

https://medium.com/@skd9000/how-we-fixed-our-cache-stampede-problem-3b2e6ac01b27?source=rss------dotnet-5

From 50 database calls to 1 — a practical guide to caching in .NET

Article preview

From Confusion to Clarity: My Journey Through C#, .NET, Azure DevOps, and Corporate Life

https://medium.com/@gupta.rish2501/from-confusion-to-clarity-my-journey-through-c-net-azure-devops-and-corporate-life-d46b71e53e67?source=rss------csharp-5

You know what’s funny? Everyone online seems to have it figured out. Perfect portfolios. Smooth career transitions. “10x developer”…

Article preview

My thoughts on Vibe Coding as a Senior .NET Engineer

https://medium.com/@timmaes/my-thoughts-on-vibe-coding-as-a-senior-net-engineer-fe609a1bcfd9?source=rss------csharp-5

My take on where we are, where we are headed, and how to stay relevant.

Article preview

New in .NET 10 and C# 14: EF Core 10's Faster Production Queries

https://blog.elmah.io/new-in-net-10-and-c-14-ef-core-10s-faster-production-queries/

.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...

Article preview

Mastering Domain-Driven Design: A Tactical DDD Implementation

https://medium.com/@aman.toumaj/mastering-domain-driven-design-a-tactical-ddd-implementation-5255d71d609f?source=rss------dotnet-5

Mastering Complexity in .NET 10: A Step-by-Step Guide to Domain-Driven Design. Move beyond basic CRUD and learn to architect a scalable…

Article preview

Jasen's take on today's picks

AI Faceoff: Customized VS Code Commands

A practical look at replacing a broken VS Code workflow with AI-assisted commands and snippets.

Top 10 Errors Found in C# Projects in 2025

A good reminder that many performance bugs start as well-intentioned “optimizations.”

Twelve months of agentic AI code-assist

This one captures how agentic assistants are changing day-to-day development habits.

Hands On with New Experimental GitHub Copilot 'Agent Skills' in VS Code

Copilot Agent Skills looks like a serious step toward reusable editor automation.

Multi-Provider Feature Flags in .NET with OpenFeature

OpenFeature’s multi-provider setup is a useful pattern if you need feature flag flexibility.

Custom Validator in ASP.NET Core MVC (Beginner-Friendly)

A beginner-friendly MVC walkthrough that stays focused on custom validation basics.

Dependency Injection Made Simple: A Practical .NET Core Guide

A straightforward DI guide for developers who want the concept explained without ceremony.

.NET Concurrency, Parallelism and async/await

Clear explanations here can help untangle concurrency, parallelism, and async/await.

C# 14 and Clean Architecture: modeling expressive domains without boilerplate

A nice bridge between newer C# features and domain modeling discipline.

How We Fixed Our Cache Stampede Problem

Cache stampedes are painful; this is the kind of fix teams can apply immediately.

From Confusion to Clarity: My Journey Through C#, .NET, Azure DevOps, and Corporate Life

A personal career piece, but still relevant for anyone navigating C#, Azure, and the workplace.

My thoughts on Vibe Coding as a Senior .NET Engineer

A thoughtful take on vibe coding from a senior engineer’s point of view.

New in .NET 10 and C# 14: EF Core 10's Faster Production Queries

EF Core 10 performance improvements are the kind of release note worth reading closely.

Mastering Domain-Driven Design: A Tactical DDD Implementation

A tactical DDD post for teams trying to move beyond CRUD without overcomplicating the design.

Related issues

📬 Get daily .NET content delivered to your inbox