frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 6 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 6 of 48
Newest first
-
ASP.NET Community Standup: Boosting Razor productivity
youtube.com Issue #478
It’s not just about new features. It’s about getting more done faster. Join us as we walk through the latest Razor editor and tooling improvements that help streamline development, reduce friction, an...
-
ASP.NET MVC to ASP.NET Core Migration NuGet Packages: Modernization Guide
faciletechnolab.com Issue #478
A guide for CTOs, architects, and engineering leaders planning legacy modernization. Find out which NuGet packages can be upgraded, replaced, removed, or redesigned based on real-world migration exper...
-
Refactoring an ASP.NET Core API with clean architecture
roundthecode.com Issue #478
Learn how to refactor an ASP.NET Core API using clean architecture by separating validation, business logic, and database access into clear layers. The page Refactoring an ASP.NET Core API with clean ...
-
Building AI-Powered Apps with Claude and ASP.NET Core
c-sharpcorner.com Issue #478
Integrate Claude AI into ASP.NET Core with C# to build intelligent apps. Learn API setup, service creation, and REST endpoint exposure.
-
Getting the Client IP Address in ASP.NET Core
weblog.west-wind.com Issue #477
When I need to pick up the client IP Address in ASP.NET Core I always forget where to find the connection information. It's simple enough: HttpContext?.Connection?.RemoteIpAddress but I never remember...
-
API Key Authentication in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #477
Production-grade API key authentication in ASP.NET Core .NET 10. Hashed keys, DB-backed store, AuthenticationHandler, decision matrix, full source repo.
-
Building Resilient Cloud Applications with Polly and ASP.NET Core
c-sharpcorner.com Issue #477
Build robust ASP.NET Core cloud apps with Polly. Implement retries, circuit breakers, timeouts, and fallbacks for ultimate resilience.
-
ASP.NET Core Rate Limiting Best Practices for High-Traffic APIs
c-sharpcorner.com Issue #476
Master ASP.NET Core rate limiting for high-traffic APIs. Protect against abuse, ensure stability, and optimize performance with best practices.
-
Working with AWS S3 using ASP.NET Core (.NET 10) - Upload, Download & Delete Files
codewithmukesh.com Issue #475
Learn how to upload, download, and delete files in AWS S3 using ASP.NET Core and .NET 10 with AWS SDK V4, Minimal APIs, presigned URLs, and IAM best practices.
-
Building AI-Native APIs with ASP.NET Core and Natural Language Interfaces
c-sharpcorner.com Issue #475
Build AI-native APIs with ASP.NET Core. Leverage natural language, intent processing, and semantic search for intelligent applications.
-
Email Integration in ASP.NET Core with SendGrid
alifiyakapasi07.medium.com Issue #475
Email functionality is a critical feature in modern applications. Whether you’re sending account verification links, password reset emails…
-
Understanding IHostedService & BackgroundService in .NET 10
codewithmukesh.com Issue #475
IHostedService vs BackgroundService in .NET 10. Side-by-side code, 5 production gotchas, decision matrix, and when to reach for Hangfire instead.
-
ASP.NET Core background tasks with NCronJob and SignalR
damienbod.com Issue #475
I was recommended NCronJob for implementing a background worker in ASP.NET Core and so I decided to give it a try, read the docs and learn this. This NuGet package is open source and works great. I im...
-
Building AI Agents in .NET with Microsoft Agent Framework
medium.com Issue #475
A practical walkthrough of MAF’s core primitives — agent sessions, streaming, and SignalR integration — built around a real working…
-
ASP.NET Core Endpoint Filters: A Complete Developer Guide
c-sharpcorner.com Issue #474
Learn ASP.NET Core Endpoint Filters with practical examples. Understand validation, logging, endpoint interception, and best practices for Minimal APIs.
-
Getting Started With Dapr for Building Cloud-Native Microservices in .NET
antondevtips.com Issue #474
Learn what Dapr is, how the sidecar architecture works, understand building blocks and components, and set up Dapr with .NET Aspire for your .NET microservices. Code examples in .NET to publish event
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #474
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.
-
Distributed Caching in ASP.NET Core Using Redis: Best Practices
c-sharpcorner.com Issue #474
Learn how to implement distributed caching in ASP.NET Core using Redis. Explore caching strategies, Redis integration, and best practices for scalable applications.
-
Streaming APIs in .NET: What, When, and How
medium.com Issue #474
🚰 What If Your API Could Talk While It Thinks?
-
ASP.NET Community Standup: Simplifying Entra ID authentication with AI
youtube.com Issue #474
Join Jean‑Marc Prieur and Kyle Marsh to see how AI can streamline Entra ID authentication in ASP.NET Core and Aspire apps. We’ll explore using AI to set up app authentication, enable calls to protecte...
-
In C#, When Should You Use Exceptions, Result Objects, or Validation Errors?
pietschsoft.com Issue #473
Every C# developer eventually runs into this design question, usually right after a perfectly reasonable method starts returning chaos.
-
C# 14 New Features Explained with Real-World Examples
c-sharpcorner.com Issue #473
Explore C# 14's powerful new features with real-world examples! Boost productivity, reduce boilerplate, and enhance performance in your .NET applications.
-
Running a production-like local environment with Aspire
timdeschryver.dev Issue #473
Prevent integration surprises in production by using Aspire to run local dependencies in a consistent, production-like setup, with Azure Blob Storage and Azurite as a practical example.
-
New features and Roslyn analyzers for Meziantou.Framework.FullPath
meziantou.net Issue #473
A few years ago, I introduced , a library to ensure you always deal with full paths in your applications and provide common methods to manipulate them easily. Recently, I've added new features to the ...
-
Running ASP.NET Core Applications as a Subfolder Application
weblog.west-wind.com Issue #473
ASP.NET Core applications by default want to run in a root folder - and to be fair that's the 99% use case. But there are those occasional situations where you want to run a Web site in a sub folder r...