frameworks
.NET 10 Articles, Tutorials & News
.NET 10 articles, tutorials, and news from the DotNetNews archive.
360 articles Updated Page 4 of 15
Browse additional .NET 10 articles from the DotNetNews archive.
.NET 10 articles
Page 4 of 15
Newest first
-
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.
-
.NET 10.0.7 Out-of-Band Security Update
devblogs.microsoft.com Issue #446
We are releasing .NET 10.0.7 as an out-of-band (OOB) update to address a security issue introduced in Microsoft.AspNetCore.DataProtection Security update details This release includes a fix for
-
Building File-Based Apps in .NET: A Complete Guide With Multi-File Support
antondevtips.com Issue #446
Learn how to build file-based apps in .NET 10 and .NET 11 Preview 3. This guide covers single-file C# scripts, multi-file apps with the #:include directive, including SDK, including project files and
-
ASP.NET Core (Latest Microsoft Release)
c-sharpcorner.com Issue #443
This article explores the latest advancements in ASP.NET Core with the release of .NET 10, focusing on performance improvements, enhanced Minimal APIs, and Blazor updates. It provides practical code e...
-
Migrate from .sln to .slnx in .NET 10 — Complete Guide to the New Solution Format
divsriv.medium.com Issue #441
Starting with .NET 10, dotnet new sln generates .slnx files by default. Your old .sln files still work, but the writing is on the wall …
-
Minimal API Validation in .NET 10 Built-In Support with Data Annotations
medium.com Issue #440
Connect with me 👇
-
How to Enable Swagger in .NET 10 (Step-by-Step Guide + Video)
medium.com Issue #440
When building APIs in .NET, testing endpoints manually can quickly become frustrating.
-
C# .NET — Upgrading a Mediator Pipeline Project with Kiro Spec-First
medium.com Issue #438
Upgrading a MediatR project to .NET 10 with Kiro IDE: testing the spec-first workflow to see how it performs and my overall impressions.
-
Clean Architecture in .NET 10: Why It Beats N-Layer and How to Wire Projects Correctly
medium.com Issue #438
As a project grows, the classic three-tier architecture (N-Layer) often turns into a “spaghetti” of dependencies, where business logic is…
-
HybridCache in ASP.NET Core .NET 10 - Complete Guide
codewithmukesh.com Issue #435
Master HybridCache in ASP.NET Core .NET 10. BenchmarkDotNet results, stampede protection demo, tag-based invalidation, Redis L2 setup, and migration from IDistributedCache.
-
What’s new in Entity Framework??
medium.com Issue #434
A practitioner’s deep dive into the architectural differences, performance gaps, and .NET 10-specific features that make EF Core the only…
-
Build Your Own CQRS Dispatcher in .NET 10 (No MediatR)
codewithmukesh.com Issue #434
MediatR went commercial. Build your own CQRS dispatcher in .NET 10 with pipeline behaviors, AOT support, and a FrozenDictionary core that benchmarks 4x faster than MediatR.
-
What are the new features in C# 14 for developer productivity?
c-sharpcorner.com Issue #434
Explore C# 14's productivity boosters! Discover streamlined pattern matching, primary constructors, collection expressions, and more for efficient .NET development.
-
Implementing Clean Architecture in a .NET 10 Solution Guide
c-sharpcorner.com Issue #434
Master Clean Architecture in .NET 10! This guide provides a step-by-step approach with practical examples for building scalable, testable, and maintainable applications.
-
Generative AI for Beginners in .NET 10: From Curiosity to Real Applications
blog.gopenai.com Issue #426
A few years ago, learning AI meant diving into complex theory, research papers, and tools that often felt disconnected from real-world… Continue reading on GoPenAI »
-
Blazor Sucks? Here’s What You Should Try Instead 2026
medium.com Issue #425
I just finished reading Alex Martossy’s Blazor Sucks and found myself nodding along to nearly every paragraph. After 6+ months on a…
-
The Developer’s Leap Forward: Everything New in .NET 10 and C# 14
medium.com Issue #425
Introduction: Why This Release Matters
-
ASP.NET Core .NET 10 Program.cs Explained: The Complete Guide to Everything You Can Configure
akash-shah.medium.com Issue #424
When developers first start working with ASP.NET Core, the Program.cs
-
10 C# 14 Features That Will Change How You Write Code
medium.com Issue #424
Ranked by how much they’ll actually affect your day-to-day work.
-
Seeding Initial Data in EF Core 10 - HasData vs UseSeeding
codewithmukesh.com Issue #422
Seed initial data in EF Core 10 with HasData, UseSeeding, and Program.cs. Includes decision matrix, FK seeding, environment strategies, and pitfalls.
-
Announcing TypeScript 6.0
devblogs.microsoft.com Issue #422
Today we are excited to announce the availability of TypeScript 6.0! If you are not familiar with TypeScript, it's a language that builds on JavaScript by adding syntax for types, which enables type-c...
-
Generative AI for Beginners .NET: Version 2 on .NET 10
devblogs.microsoft.com Issue #422
Announcement of Version 2 of Generative AI for Beginners .NET, a free course rebuilt for .NET 10 with Microsoft.Extensions.AI, updated RAG patterns, and new agent framework content across five structu...
-
Bulk Operations in EF Core 10 - Benchmarking Insert, Update, and Delete Strategies
codewithmukesh.com Issue #419
Learn how to optimize bulk insert, update, and delete operations in EF Core 10. We benchmark 5 approaches with real numbers and a decision matrix for every scenario.
-
Multiple DbContext in EF Core 10 - Scenarios, Setup & Migrations
codewithmukesh.com Issue #419
When and how to use multiple DbContext in EF Core 10. Multi-database setup, schema separation, migrations, transactions, and modular monolith patterns.