apis
ASP.NET Core Web API Articles, Tutorials & News
ASP.NET Core Web API articles, tutorials, and news from the DotNetNews archive.
333 articles Updated Page 7 of 14
Browse additional ASP.NET Core Web API articles from the DotNetNews archive.
ASP.NET Core Web API articles
Page 7 of 14
Newest first
-
Connecting React and .NET Web API:How They Talk To Each Other??
medium.com Issue #396
When I first started learning web development, I thought that connecting a frontend to a backend was like magic. You click a button, and…
-
How to Send Web Push Notifications in .NET 10
medium.com Issue #396
A Practical Guide Using Modern Standards
-
Coding agents, MVC, and runtime internals
DotNetNews Issue #393
A varied .NET roundup covering an AI coding-agent explorer, MVC and Minimal API guides, EF Core transactions, caching, and runtime async internals.
-
-
Stop Rebuilding API Plumbing: A Clean Architecture .NET 10 Web API Starter
medium.com Issue #382
Week 2 of an API project is where optimism goes to get a reality check.
-
Implementing Distributed Caching in Web API with Azure Managed Redis
medium.com Issue #381
I’ve worked with caching before — storing AI chat request/response pairs in Cosmos DB to avoid redundant model calls, and caching API…
-
Tracking .NET API Endpoints Easily and Faster with Aspire Dashboard
medium.com Issue #381
In this article, we will explore how to easily track and analyze the endpoints of a simple .NET API using the Aspire Dashboard Docker…
-
Hands On: Testing Cursor, Windsurf and VS Code on Text-to-Website Generation
visualstudiomagazine.com Issue #381
A hands-on comparison shows how Cursor, Windsurf, and Visual Studio Code approach text-to-website generation differently once they move beyond the basics and begin redesigning and extending their own ...
-
Nobody Tells You How ASP.NET Core Uses Reflection and Attributes to Wire Controllers and Routes
medium.com Issue #378
Have you ever spent hours debugging why your ASP.NET Core API routes aren’t hitting or why your model binding silently fails? You’re not…
-
ASP.NET Development Company: Building Secure, Scalable, and High-Performance Web Applications in…
medium.com Issue #366
In today’s digital-first world, businesses need web applications that are fast, secure, scalable, and future-ready. Microsoft’s ASP.NET…
-
TDD in .NET: Practicing TDD in a Web API Project
medium.com Issue #360
Motivation: Why This Article?
-
Authentication in .NET — Part 11: Tenant-Aware Identity & Data Isolation
dilankam.medium.com Issue #356
In Part 10, we secured Web APIs using policy-based scopes issued by an Identity Provider. Now Part 11, we go one level deeper and address…
-
How to Build Your First Web API (.NET Examples)
medium.com Issue #355
If you’re new to backend development, one of the best things you can build to understand how everything connects is a simple Web API…
-
Authentication in .NET — Part 10: Securing Web APIs Using Policy-Based Scopes
dilankam.medium.com Issue #348
In earlier parts of this series, we explored authentication foundations, JWTs, hybrid flows, and authorization models. In Part 10, we…
-
Simplifying Cloud-Native Development with .NET Aspire
medium.com Issue #346
Build observable, production-ready distributed applications with .NET Aspire Continue reading on Simform Engineering »
-
Building an Event-Driven Web API Using Channels in .NET
malshikay.medium.com Issue #336
When you build a Web API, sometimes you need to handle work that should not block the main request.
-
⭐ Stop Guessing! Here’s Exactly What Action Methods Do in ASP.NET Core
medium.com Issue #335
Action methods are one of the first things you must understand while building a Web API in ASP.NET Core. But beginners often get confused…
-
Understanding HTTP Methods in Web API (.NET)
medium.com Issue #333
HTTP methods are essential in Web API (.NET) to define how clients interact with a server. Methods like GET, POST, PUT, and DELETE help…
-
Old API, New Tricks: Add MCP to Existing .NET REST Endpoints
youtube.com Issue #330
In this session, we’ll explore how to breathe new life into your existing ASP.NET Web API endpoints built with ASP.NET CORE by adding Model Creation Protocol (MCP) capabilities to them. .NET 10 — The ...
-
Why You Should Use DTOs Instead of Entities in ASP.NET Core Web API
malshikay.medium.com Issue #327
Using DTOs: a simple step toward secure and maintainable APIs
-
Building Interactive UI in ASP.NET Web Forms with Data Binding & jQuery
c-sharpcorner.com Issue #324
Explore dynamic data binding in ASP.NET Web Forms! Learn how to pass data to client-side JavaScript for interactive modal updates using Bootstrap.
-
This One Header Can Make Your API 30% Faster
medium.com Issue #324
(And it takes less than 2 minutes to add)
-
ASP.NET Core REST API Best Practices: The 2025 Developer’s Guide
isitvritra101.medium.com Issue #324
Learn ASP.NET Core REST API best practices for 2025. Master HTTP methods, status codes, JWT auth, versioning & pagination.
-
-
Building a REST API with .NET and SQL Server — The Clean Way
medium.com Issue #324
When I first started building APIs in .NET, I thought the goal was simple: get data from SQL Server and return it as JSON. It worked — but…