ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1213 articles Updated Page 13 of 49
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
ASP.NET Core articles
Page 13 of 49
Newest first
-
.NET Full Stack: Building End-to-End Web Apps
medium.com Issue #418
Introduction: The Rise of Full Stack Developers
-
Scaling SignalR With a Redis Backplane
milanjovanovic.tech Issue #417
SignalR connections are server-local. Scale out to multiple instances and messages stop reaching the right clients. Here's how the Redis backplane fixes that - and what you still need to get right.
-
Low-Code vs Traditional .NET Development: Pros and Cons
c-sharpcorner.com Issue #417
Explore low-code vs .NET development in 2026. Discover the pros & cons, hybrid strategies, and when to use each for optimal speed, scalability, & control.
-
Repository Design Pattern in ASP .NET
medium.com Issue #417
The Repository Design Pattern is a widely used pattern in software development. It separates the Data Access layer from Controller Layer…
-
Understanding Middleware in ASP.NET Core with Examples
c-sharpcorner.com Issue #417
Master ASP.NET Core middleware! Learn how to use Use, Run, and Map to build robust request pipelines. Implement custom middleware for logging, auth, and more.
-
Understanding Dependency Injection Lifetimes in ASP.NET Core (Transient, Scoped, Singleton)
medium.com Issue #417
Dependency Injection (DI) is one of the most important concepts in ASP.NET Core. It helps developers build applications that are loosely…
-
When NOT to Use Async in ASP.NET Core
medium.com Issue #417
Almost every ASP.NET Core tutorial says the same thing:
-
When “Healthy” Isn’t Enough: Building Health Checks That Validate Real Readiness In C#
levelup.gitconnected.com Issue #417
Most health checks are too shallow. They answer questions like: Continue reading on Level Up Coding »
-
The Human Scale Problem in Platform Engineering
devblogs.microsoft.com Issue #416
We keep doing this thing where we solve a problem, celebrate the victory, then realize we've created three new problems we didn't even know existed. Remember when manually configuring servers was the ...
-
Minimal APIs After the Hype: What Remains When Boilerplate Is Gone?
binaryintellect.net Issue #416
Minimal APIs are no longer new. The conference talks have ended. The syntax demos no longer draw applause. What remains is not the novelty—but the question they quietly forced us to confront: How much...
-
How to secure ASP.NET Core APIs with Basic Authentication
roundthecode.com Issue #416
Learn how to implement Basic Authentication in ASP.NET Core Web APIs with Minimal APIs and controllers, ideal for securing internal APIs. The page How to secure ASP.NET Core APIs with Basic Authentica...
-
Modernizing .NET — Part 14: Migrating from WebHost to WebApplication in ASP.NET Core
medium.com Issue #415
WebHost was common in early ASP.NET Core apps. This post shows how to migrate to the modern WebApplication model.
-
Building High-Performance APIs with ASP.NET Core: A Practical Guide for Production
blog.stackademic.com Issue #414
Modern applications live and die by API performance. Slow endpoints increase infrastructure costs, reduce scalability, and hurt user… Continue reading on Stackademic »
-
How to Generate OTP in C#
c-sharpcorner.com Issue #414
Learn how to generate OTP (One-Time Password) in C# using both basic and secure methods. Implement secure authentication and verification in your applications.
-
YARP as API Gateway in .NET: 7 Real-World Scenarios You Should Know
antondevtips.com Issue #414
Master YARP as an API Gateway for your .NET microservices. This guide covers routing, load balancing, centralized security and authentication, path rewriting, Backend-for-Frontend (BFF) patterns, rate
-
Hands On: Building an MCP Server with VS Code AI Toolkit's New Tool Catalog
visualstudiomagazine.com Issue #414
Microsoft's AI Toolkit extension for VS Code now lets developers scaffold a working MCP server in minutes. Here's what that looks like in practice -- including the parts that don't work, and a simpler...
-
Building a Remote MCP Server with .NET 10 and Prompts
logcorner.com Issue #413
Model Context Protocol (MCP) gives AI clients a standard way to discover and call server capabilities. Most examples focus on tools first, but this project demonstrates an equally important direction:...
-
.NET 11 Preview 2 is now available!
devblogs.microsoft.com Issue #413
Find out about the new features in .NET 11 Preview 2 across the .NET runtime, SDK, libraries, ASP.NET Core, Blazor, C#, .NET MAUI, and more! The post .NET 11 Preview 2 is now available! appeared firs...
-
.NET AI Community Standup: Real-World AI Agent Architecture in .NET
youtube.com Issue #412
Using the open-source Interview Coach sample, we’ll explore production patterns for building multi-agent systems in .NET using: - Microsoft Agent Framework - Microsoft Foundry as the model backend - M...
-
How Routing Works in ASP.NET Core
malshikay.medium.com Issue #410
Routing is one of the most important concepts in ASP.NET Core. Every HTTP request that comes into your application is mapped to a specific…
-
Binding Sources in ASP .NET Core
benedictodoh.medium.com Issue #409
In ASP.NET Core, binding sources are attributes that tell the framework exactly where to retrieve data from within an HTTP request. When a…
-
Building Multitenant Web Apps in .NET with CShells
sipkeschoorstra.medium.com Issue #408
Modeling multitenancy through container isolation instead of runtime conditionals
-
CurlDelegating Handler in .NET
srinjoysantra.medium.com Issue #408
Debug your .NET core http client requests by logging as curl
-
How to Integrate ChatGPT API in ASP.NET Core Application?
c-sharpcorner.com Issue #408
Integrate ChatGPT API into ASP.NET Core for intelligent features like chatbots and content generation. Securely connect to OpenAI and build AI-powered apps.
-
Why Your C# AI Agents Will Fail in Production (And How to Fix It)
levelup.gitconnected.com Issue #408
The transition from a cool AI prototype running in a Jupyter Notebook to a production-grade, scalable microservice is where most projects… Continue reading on Level Up Coding »