frameworks
.NET 10 Articles, Tutorials & News
.NET 10 articles, tutorials, and news from the DotNetNews archive.
433 articles Updated Page 6 of 18
Browse additional .NET 10 articles from the DotNetNews archive.
.NET 10 articles
Page 6 of 18
Newest first
-
Implementing Clean Architecture in .NET 10 - Step-by-Step Guide
codewithmukesh.com Issue #466
A complete, junior-friendly guide to Clean Architecture in .NET 10. Build a movie API across Domain, Application, Infrastructure, and API layers with EF Core and Aspire.
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #464
Production-grade rate limiting in ASP.NET Core .NET 10. All 4 algorithms, partitioning, Redis backplane, OnRejected with Retry-After, multi-tenant tiers, and a real decision matrix.
-
.NET (OK, C#) finally gets union types🎉: Exploring the .NET 11 preview - Part 2
andrewlock.net Issue #464
In this post I discuss the support for union types released in .NET 11, how they're implemented, the choices made, and how to create your own
-
A useful new .Net feature for Processes
blog.jermdavis.dev Issue #464
The pace of change with .Net is pretty relentless these days. And every so often they ship a thing that fixes a challenge I've been mulling over addressing myself. That's happened again with Process A...
-
The New Agent Customization Window #vscode #customization
youtube.com Issue #463
Understanding IHostedService & BackgroundService in .NET 10
-
Repository Pattern in .NET 10 - Do You Really Need It?
codewithmukesh.com Issue #463
I have shipped 50+ .NET APIs and most did not need a Repository Pattern. My sharp .NET 10 verdict on when to use it, when to skip it, what to use instead.
-
Repository Pattern with Entity Framework Core in .NET 10 | Clean Architecture Simplified
medium.com Issue #463
Building scalable applications in .NET 10 is not only about writing APIs — it is about writing maintainable code. That is why many…
-
NuGet Package Pruning: Cleaner Dependencies and Actionable Vulnerability Reports
devblogs.microsoft.com Issue #463
Package pruning in .NET 10 removes platform-provided packages from your dependency graph. With transitive auditing enabled by default, projects with these defaults have 70% fewer transitive vulnerabil...
-
10 .NET 10 API Anti-Patterns That Break Production (And How to Fix Them)
codewithmukesh.com Issue #462
10 ASP.NET Core anti-patterns that break production in .NET 10 - async void, sync-over-async, fat controllers, runtime-reflection mappers in AOT, and the 2026 ones.
-
dotnet run hello.cs — C# Finally Got Its "Python Moment" in .NET 10
medium.com Issue #461
How File-Based Apps in C# 14 & .NET 10 kill the boilerplate and bring scripting-speed prototyping to the world’s most powerful typed…
-
10 EF Core Performance Mistakes (and How to Fix Them) in .NET 10
codewithmukesh.com Issue #459
10 EF Core performance mistakes that ship to production - N+1 queries, missing projections, lazy loading, AsNoTracking, bulk ops - and how to fix each in .NET 10.
-
Copilot Studio gets faster with .NET 10 on WebAssembly
devblogs.microsoft.com Issue #458
Microsoft Copilot Studio recently upgraded its .NET WebAssembly engine to .NET 10. The migration was straightforward, simplified deployment, and delivered another round of meaningful performance gains...
-
Inside Cowork — Vision, Roadmap and What’s Next
youtube.com Issue #458
.NET MAUI Moves to CoreCLR in .NET 11
-
.NET AI Community Standup: .NET + AI at Build 2026: What’s Coming Next?
youtube.com Issue #458
Process API Improvements in .NET 11
-
Simple Multithreading in C# with a Practical Example (.NET 10)
medium.com Issue #455
Multithreading is a fundamental concept in modern programming that allows applications to perform multiple operations concurrently.
-
How To Use Domain-Driven Design In Clean Architecture
medium.com Issue #455
A Practical Guide for .NET 10 Developers Building Enterprise-Grade Systems
-
Copilot Studio gets faster with .NET 10 on WebAssembly
devblogs.microsoft.com Issue #454
A few months ago, we shared How Copilot Studio uses .NET and WebAssembly for performance and innovation, describing how Microsoft Copilot Studio runs C# in the browser via .NET
-
Stop Creating Fake Data Manually — Use Bogus in .NET 10
medium.com Issue #454
Every developer has been there — staring at a blank test file, typing "John Doe" for the hundredth time. There's a better way.
-
Prompt Engineering for Claude Code - The .NET Developer's Guide
codewithmukesh.com Issue #453
Write effective Claude Code prompts for .NET 10 projects. The 4-layer instruction hierarchy, 10 Bad vs Better patterns, and a decision matrix from 6 months of daily use.
-
Beyond Distroless: Why We “Chiseled” Our .NET 10 Backend for NearU
medium.com Issue #453
In modern cloud-native development, “done” isn’t enough — it has to be efficient. As the Lead Developer for NearU, a platform built to…
-
.NET 11 vs .NET 10 — Faster, Smarter, and Quietly Powerful
medium.com Issue #449
Every year, Microsoft pushes .NET forward — and this time, .NET 11 is shaping up to be less about hype… and more about serious refinement.
-
Cleaning Migrations in EF Core 10 - Squash, Reset & Manage History
codewithmukesh.com Issue #448
Learn when and how to clean EF Core 10 migrations. Squash, reset, remove, resolve team conflicts, plus a decision matrix for the right cleanup strategy.
-
Running Migrations in EF Core 10 - 5 Ways Compared
codewithmukesh.com Issue #448
Learn 5 ways to apply EF Core 10 migrations: CLI, Migrate(), SQL scripts, migration bundles, and EnsureCreated. Includes a decision matrix and production checklist.
-
Combining API versioning with OpenAPI in .NET 10 applications
devblogs.microsoft.com Issue #448
Learn how to implement API versioning in your .NET 10 applications using OpenAPI for better API management and documentation. The post Combining API versioning with OpenAPI in .NET 10 applications ap...
-
Building a Modern Event-Driven System Locally: .NET 10, Kinesis, and LocalStack
naved-shaikh.medium.com Issue #448
When designing scalable architectures, we often talk about decoupling services.