ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1213 articles Updated Page 7 of 49
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
ASP.NET Core articles
Page 7 of 49
Newest first
-
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...
-
Designing Human-in-the-Loop AI Systems with ASP.NET Core
c-sharpcorner.com Issue #473
Learn how to design Human-in-the-Loop AI systems with ASP.NET Core using approval workflows, audit logging, role-based access control, and enterprise governance best practices.
-
One Innocent Line (.Result) Froze My Entire API. I Was Blocking async Without Knowing It.
medium.com Issue #473
Everyone says “use async.” Nobody warns you what happens when you mix it with one tiny .Result.
-
Structured Logging with Serilog in ASP.NET Core .NET 10
codewithmukesh.com Issue #473
Master structured logging with Serilog in ASP.NET Core .NET 10 - sinks, enrichers, OpenTelemetry, anti-patterns, correlation IDs, and production-ready config templates.
-
Streaming data without loading everything into memory
csharpdigest.net Issue #473
IAsyncEnumerable lets you process large datasets one item at a time instead of loading everything into memory
-
Lost ASP.NET Identity Cookies on IIS Application Pool Restarts
weblog.west-wind.com Issue #472
Last week I finally updated my blog and moved it to .NET 10 from the ancient WebForms based engine I built 20 years ago. The app is deployed onto a Windows server running IIS and I ran into a snag rel...
-
Building Multi-Tenant SaaS Applications in ASP.NET Core
c-sharpcorner.com Issue #472
Learn how to build multi-tenant SaaS applications in ASP.NET Core. Explore tenant isolation, architecture models, EF Core filtering, and security best practices.
-
Building for the agentic web with .NET 11
youtube.com Issue #472
The demands on modern web apps are increasing. Users expect more performance, airtight security, and even agentic capabilities. What does the next generation of web apps look like on .NET? In .NET 11,...
-
How to Fix "Maximum Request Length Exceeded" in ASP.NET Applications
c-sharpcorner.com Issue #472
Learn how to fix the "Maximum Request Length Exceeded" error in ASP.NET and IIS. Configure maxRequestLength and maxAllowedContentLength settings to support large file uploads up to 100 MB or more.