frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 7 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 7 of 48
Newest first
-
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.
-
C#: Should This Service Be Singleton, Scoped, or Transient?
pietschsoft.com Issue #472
One of the most common ASP.NET Core dependency injection questions sounds simple:
-
Building a Natural Language API Gateway Using ASP.NET Core and AI
c-sharpcorner.com Issue #472
Learn how to build a Natural Language API Gateway using ASP.NET Core and AI. Discover intent detection, API orchestration, structured outputs, security controls, and enterprise implementation patterns...
-
I Built a Full-Stack Marketplace in 3 Months — Here’s What Actually Happened
medium.com Issue #472
Most portfolio projects look the same. A todo app, a weather dashboard, maybe a blog with a CMS.
-
JWT Authentication in ASP.NET Core - A Complete .NET 10 Guide
codewithmukesh.com Issue #471
Implement JWT authentication in ASP.NET Core .NET 10 - generate signed tokens with JsonWebTokenHandler, secure Minimal API endpoints, and add role-based authorization.
-
ASP.NET Core Endpoint Filters: Complete Guide with Examples
c-sharpcorner.com Issue #471
Learn ASP.NET Core Endpoint Filters with practical examples. Understand validation, logging, authorization, performance monitoring, exception handling, and best practices for Minimal APIs.
-
Refresh Tokens in ASP.NET Core - A Complete .NET 10 Guide
codewithmukesh.com Issue #471
Implement refresh tokens in ASP.NET Core .NET 10 - token rotation, reuse detection, revocation, and where to store them, built on top of JWT authentication.
-
Why Task.Run() Inside ASP.NET Core Is Usually a Mistake?
medium.com Issue #470
A lot of backend code uses this pattern:
-
Deep Dive into ASP.NET Core's WebApplication — What Really Happens Under the Hood
medium.com Issue #469
This single line WebApplication.CreateBuilder(args) does a lot of heavy lifting before your first request ever arrives. Let's peel back…
-
OWASP Top 10 for .NET Developers -Part 3: Preventing Injection Attacks
medium.com Issue #469
Modern web applications process enormous amounts of user-controlled data every second - login credentials, search queries, transaction…
-
Running ASP.NET Core Applications as a Subfolder Application
weblog.west-wind.com Issue #468
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...
-
Concurrency in Dapper Without EF Core
medium.com Issue #467
A practical guide to avoiding lost updates in ASP.NET Core using LastUpdated timestamps
-
A simple introduction to SignalR
serkanozbeykurucu.medium.com Issue #467
Real time communication has quietly become something users just expect. Chat apps, live dashboards, alerts that show up the second…
-
Lost ASP.NET Identity Cookies on IIS Application Pool Restarts
weblog.west-wind.com Issue #467
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 a Real-Time AI API with Claude & ASP.NET Core
odhavanivipul92.medium.com Issue #467
SSE streaming so users see answers as they’re generated, Minimal API endpoints, and tool use so Claude can call your own C# methods
-
Understanding Middleware in .NET
yogeshhadiya33.medium.com Issue #466
Whenever a request hits an ASP.NET Core application, it doesn’t directly go to your controller or endpoint. Before that happens, the…
-
The Hidden Cost of ToList() in .NET APIs
medium.com Issue #466
We all use it ToList() everywhere. It looks harmless. But in production systems? ToList() quietly becomes one of the biggest performance…
-
Add a Live Observability Dashboard to Your ASP.NET
medium.com Issue #466
No Grafana. No Datadog. No YAML. Just visibility.