frameworks
.NET 10 Articles, Tutorials & News
.NET 10 articles, tutorials, and news from the DotNetNews archive.
392 articles Updated Page 2 of 16
Browse additional .NET 10 articles from the DotNetNews archive.
.NET 10 articles
Page 2 of 16
Newest first
-
What's New in C# 14: Features Every .NET Developer Should Know
c-sharpcorner.com Issue #506
Discover C# 14's key features: enhanced collection expressions, pattern matching, null safety, and compiler optimizations for .NET developers.
-
Mastering Async Streams in C#: IAsyncEnumerable Guide
medium.com Issue #505
Stream data as it arrives in C#. Master IAsyncEnumerable, await foreach, cancellation gotchas, Channels, and .NET 10's built-in async LINQ
-
Building a Multi-Vertical Clean Architecture Platform for Azure Functions (.NET 10)
medium.com Issue #504
Three repos, one architecture, and the database question every growing API platform eventually has to answer
-
Building Your First Agentic AI Application in .NET 10 Step by Step
c-sharpcorner.com Issue #503
Build your first Agentic AI app in .NET 10! Learn to create intelligent agents that plan, use tools, and act autonomously. Step-by-step guide.
-
Fastest Way to Bulk Insert Thousands of Rows in EF Core
codewithmukesh.com Issue #502
Benchmark the fastest way to bulk insert thousands of rows in EF Core 10 - AddRange vs EFCore.BulkExtensions vs SqlBulkCopy and Npgsql COPY, with real numbers.
-
Custom User Management in ASP.NET Core Web API (.NET 10)
codewithmukesh.com Issue #502
Build a user-management layer in ASP.NET Core Web API: a custom user model, admin endpoints to list, lock, and role-manage users, and self-service profiles.
-
Problem Details in ASP.NET Core and .NET 10 | BEN ABT
medium.com Issue #502
Error responses are part of an API contract. Still, many systems grow them incidentally: one endpoint returns { "error": "not found" }…
-
What .NET 10 Means for Enterprise Application Development
medium.com Issue #499
.NET 10 shipped in November 2025 as the current Long Term Support release. Every two years, Microsoft ships an LTS, and every two years…
-
Improvements to reading Process outputs: Exploring the .NET 11 preview - Part 5
andrewlock.net Issue #498
In this post I show some of the improvements to the Process API in .NET 11 for running processes and reading their outputs without risk of deadlock
-
EF Core Interceptors: The Complete Guide (.NET 10)
codewithmukesh.com Issue #497
Learn EF Core interceptors in .NET 10 - all 7 types, how to register them, and how to add audit fields, soft deletes, and the current user without breaking dependency injection.
-
Identity API Endpoints in ASP.NET Core: When to Use Them (.NET 10)
codewithmukesh.com Issue #497
MapIdentityApi gives you register, login, and refresh for free in .NET 10. Here is exactly when to use Identity API endpoints and when to roll your own.
-
Exploring C# 15: Union Types, Collection Expressions, and Closed Hierarchies
c-sharpcorner.com Issue #494
Explore C# 15's Union Types, Closed Hierarchies, and Collection Expressions for enhanced type safety and code readability.
-
.NET 10 dnx: Run a .NET Tool Without Installing It
c-sharpcorner.com Issue #493
Run .NET tools without installation using dotnet tool exec or the dnx shortcut. Ideal for one-off tasks & CI/CD.
-
Best Libraries for ASP.NET Core in 2026 (Opinionated)
codewithmukesh.com Issue #493
An opinionated list of the best libraries for ASP.NET Core in 2026 - what to install, what .NET 10 now ships free, and which popular packages went commercial.
-
What's New in .NET 11: Features, Performance Improvements, and Migration Guide
c-sharpcorner.com Issue #490
.NET 11 boosts performance, productivity & cloud-native dev with Native AOT, faster ASP.NET Core, smarter GC & improved tooling. Migrate easily!
-
Closed class hierarchies: Exploring the .NET 11 preview - Part 4
andrewlock.net Issue #490
In this post I describe what a close closed hierarchy is, how to create one, and discuss why you might want to
-
The One .NET 10 Method That Deleted Every GroupJoin I'd Ever Written
medium.com Issue #489
Twenty years of LINQ. One missing keyword. A report that silently lied for three weeks.
-
Avoiding ToString() allocations with StringBuilder.MoveChunks: Exploring the .NET 11 preview - Part 3
andrewlock.net Issue #489
in this post I take a short look at the new MoveChunks API, explore how it works, what it's for, and how the new API provides opportunities for public APIs
-
30 EF Core Interview Questions That Actually Get Asked in 2026
codewithmukesh.com Issue #488
30 real EF Core interview questions with great answers, red flags, and follow-ups. N+1, change tracking, migrations, concurrency - updated for EF Core 10.
-
Building Offline-First AI Applications with Foundry Local and .NET 11
c-sharpcorner.com Issue #487
Build offline-first AI apps with .NET 11 and Foundry Local. Enhance privacy, reduce latency, and ensure reliability for intelligent applications.
-
30 LINQ Interview Questions That Actually Get Asked in 2026
codewithmukesh.com Issue #486
30 real LINQ interview questions with great answers, red flags, and follow-ups. Deferred execution, IQueryable, expression trees, and the .NET 9/10 operators.
-
Process API improvements in .NET 11
csharpdigest.net Issue #485
how the team made the biggest update to it in years
-
The field Keyword in C# 14 — A Small Feature That Removes a Lot of Boilerplate
medium.com Issue #485
If you’ve worked with C# long enough, you’ve probably written code like this countless times:
-
C# 14 Key Features You Need to Know — Explained Simply
c-sharpcorner.com Issue #485
Discover the key features of C# 14, the latest language version shipping with .NET 10. This blog breaks down extension members, the field keyword, null-conditional assignment, implicit Span conversion...
-
I Built a Claude Code Skill That Scaffolds My .NET Architecture
codewithmukesh.com Issue #485
Teach Claude Code your conventions once. Build a custom skill that scaffolds a full vertical slice in .NET 10 - endpoint, handler, validator, EF config, and test - your way.