frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1420 articles Updated Page 3 of 57
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 3 of 57
Newest first
-
Hybrid rendering in .NET: server-rendered pages with interactive islands
medium.com Issue #522
Rendering architecture is often presented as a binary decision: stay with MVC, or move the entire public experience into a separate…
-
How Enterprise Applications Leverage ASP.NET Core Middleware to Handle Requests at Scale
c-sharpcorner.com Issue #521
ASP.NET Core Middleware is key for enterprise apps, handling security, tracing, rate limiting, and fault tolerance at scale.
-
REST API Security Best Practices in ASP.NET Core
medium.com Issue #521
It does not matter how clean your architecture is or how fast your queries run — if an attacker can read another user’s orders or forge a… Continue reading on CodeX »
-
Your .NET API Works. But Is It Actually Production-Ready?
medium.com Issue #521
A practical guide to taking an ASP.NET Core API from “it works on my machine” to something you can confidently deploy.
-
Benchmarking ASP.NET Core HTTP/3 Under Real API Load
c-sharpcorner.com Issue #520
Benchmark ASP.NET Core API HTTP/3 performance under real-world load. Measure latency, throughput, CPU, and memory for accurate insights.
-
Building Asynchronous Messaging Pipelines with MassTransit and RabbitMQ
c-sharpcorner.com Issue #519
Build resilient, event-driven .NET apps with MassTransit & RabbitMQ. Decouple services, handle spikes, and ensure fault tolerance for high concurrency.
-
Building AI-Ready APIs with Structured Output Validation in ASP.NET Core
c-sharpcorner.com Issue #519
Build robust AI-powered APIs in ASP.NET Core with structured output validation. Ensure reliable data integration and prevent downstream errors.
-
ASP.NET Core REST API Development Guide
faciletechnolab.com Issue #519
A practical guide to building REST APIs with ASP.NET Core — routing, controllers, versioning, authentication, validation, error handling, and OpenAPI docs.
-
Building Resilient HTTP Clients with Polly v9 and .NET 11
c-sharpcorner.com Issue #519
Build resilient .NET 11 HTTP clients with Polly v9. Master retry, timeout, and circuit breaker patterns for reliable service communication.
-
Microservices with .NET: Architecture Patterns for Enterprise Teams
medium.com Issue #519
ASP.NET Application Development Services teams building enterprise platforms in 2026 face a recurring question: when does a monolith stop…
-
ASP.NET Community Standup: What's new in .NET 11 Preview 7?
youtube.com Issue #519
Join the ASP.NET Core team for a tour of what's new for ASP.NET Core and Blazor in .NET 11 Preview 7: Output caching for Blazor, QuickGrid virtualization improvements, auto-pausing Blazor Server circu...
-
Relational Where It Helps, JSONB Where It Must: Persisting IIIF Presentation 3 in PostgreSQL with…
ahmadminoo.medium.com Issue #519
A proof of concept using the real IIIF Manifest object model, EF Core owned entities, Razor Pages, PostgreSQL, and careful JSONB
-
What Autofac and Scrutor Are Still For
medium.com Issue #519
Every .NET release swallows another reason to install a container. Here’s what’s left for Scrutor, and what still needs Autofac.
-
Leveraging Built-In Rate Limiting and Output Caching in Modern .NET
c-sharpcorner.com Issue #519
Boost .NET API performance with built-in rate limiting & output caching. Protect against abuse & reduce database load efficiently.
-
Modern authentication in ASP.NET Core with 2FA and passkey
blog.elmah.io Issue #519
This walkthrough builds a .NET 10 ASP.NET Core Web API (TwoFaNET10) implementing two-factor authentication and WebAuthn/FIDO2 passkey login, using Microsoft.AspNetCore.Identity.EntityFrameworkCore wit...
-
Entity Framework N+1 in a Report Loop: The Pre-Fetch Fix Was Going to Crash Large Tenants
medium.com Issue #519
he query loop was firing once per row. The obvious fix loaded the entire tenant’s history into memory. Neither was acceptable.
-
Diagnosing Thread Pool Starvation in ASP.NET Core APIs
c-sharpcorner.com Issue #519
Diagnose and fix ASP.NET Core API Thread Pool starvation. Learn to identify slow responses caused by blocked threads, not just slow databases.
-
How I Extended Polly’s Resilience Pipeline with a Custom IOptionsMonitor
medium.com Issue #519
From feature request to merged PR: exposing a hidden path in Polly’s resilience pipeline.
-
How to Resolve SQL Server Error 40 ("Could Not Open a Connection to SQL Server")
c-sharpcorner.com Issue #519
Resolve SQL Server Error 40 in ASP.NET Core. Troubleshoot connection issues with Entity Framework Core, connection strings, and configuration.
-
Designing High-Throughput File Processing Pipelines with .NET Channels
c-sharpcorner.com Issue #519
Design scalable .NET file processing pipelines with Channels. Learn producer-consumer, backpressure, and error handling for high throughput.
-
-
The REPR Pattern in Minimal APIs: One Class, One Job
medium.com Issue #518
The REPR pattern — Request, Endpoint, Response — is a lightweight architectural convention that fixes this without dragging MVC’s…
-
Building a Lightweight Web Analytics SDK & Real-Time Customer Journey Platform from Scratch
c-sharpcorner.com Issue #518
Build a lightweight web analytics SDK & real-time customer journey platform from scratch, focusing on performance, scalability, and developer experience.
-
Building Distributed Rate Limiting with Redis and YARP Reverse Proxy
c-sharpcorner.com Issue #518
Learn to build robust distributed rate limiting for ASP.NET Core apps using Redis and YARP. Protect APIs from traffic spikes and abuse.
-
Stop API Failures Before They Happen with ASP.NET Core Health Checks
medium.com Issue #518
“A successful API isn’t the one that works only during development — it is the one that can prove it’s healthy every second in production.”