ASP.NET Core Web API Articles, Tutorials & News
ASP.NET Core Web API articles, tutorials, and news from the DotNetNews archive.
270 articles Updated Page 6 of 11
ASP.NET Core Web API articles, tutorials, and news from the DotNetNews archive.
ASP.NET Core Web API articles
Page 6 of 11
Newest first
-
Request and Response Models: Keep Your API Contracts Clean in ASP.NET Core
medium.com Issue #309
How to separate domain entities from API contracts to prevent data leaks and breaking changes in your ASP.NET Core APIs.
-
Integrating Visa CyberSource in .NET: A Practical Guide
blog.yaseerarafat.com Issue #309
Learn how to integrate Visa CyberSource in .NET for secure, seamless payment processing with best practices…
-
Mastering C# Strings: Manipulation, Formatting, and Comparison
medium.com Issue #307
When working with C#, one of the most frequently used data types is the string. Whether you’re building a console application, a web API…
-
ASP.NET Core Web API
medium.com Issue #305
ASP.NET Core Web API: Modern Uygulamaların Perde Arkasındaki Güç
-
Scaling .NET APIs with Ease: How I Used C# to Handle Millions of Requests
medium.com Issue #305
How I Rebuilt My API Infrastructure to Handle Load, Caching, and Concurrency the Right Way Continue reading on .Net Programming »
-
Understanding Filters in ASP.NET Core: A Comprehensive Guide — Part 1
medium.com Issue #305
In ASP.NET Core, filters are a powerful feature that allow you to run code before and after the middleware working stages of the request… Continue reading on .Net Programming »
-
Understanding API in .NET Core — A Beginner-Friendly Guide with Real-Life Example
c-sharpcorner.com Issue #304
Unlock the power of APIs in .NET Core with this beginner-friendly guide! Learn to build a simple web API, understand endpoints, and connect frontends to backends using real-world examples like job por...
-
Updating and Deleting Tasks in Our .NET
medium.com Issue #300
In the previous post, we created new tasks and got our backend to communicate with PostgreSQL. By including Update (PUT) and Delete…
-
Mastering REST APIs in ASP.NET Core and C#: A Complete Guide for .NET Developers
shahedbd.medium.com Issue #298
In today’s interconnected digital landscape, REST APIs serve as the backbone of modern web applications, enabling seamless communication… Continue reading on .Net Programming »
-
Spinning Up a Minimal Todo List API in .NET
medium.com Issue #298
As a JavaScript developer, I’ve always worked with React + NodeJS, but I recently decided to dive into .NET to understand how to build a…
-
Dockerfile for a .NET 9 Web API Application
nodogmablog.bryanhogan.net Issue #297
Occasionally, I want to build and run a .NET application within a Docker container. I use VS Code on Linux, so I don’t have the easy option to add a Dockerfile that is in the full Visual Studio. And ...
-
Containerizing .NET Core Web Applications with Docker: Step-by-Step Guide
blog.stackademic.com Issue #295
In today’s fast-paced development landscape, containerization has become a cornerstone of modern application deployment. Docker, the… Continue reading on Stackademic »
-
Building a Reverse Proxy with YARP in .NET
medium.com Issue #295
Modern microservices architectures often involve multiple services running independently. Managing and exposing these services efficiently… Continue reading on ExpertMinds »
-
Compress HttpClient requests with GZIP
josef.codes Issue #295
By streaming the gzip compression instead of using MemoryStream, we can significantly reduce memory allocation and avoid OutOfMemoryExceptions with large payloads.
-
Lazy Loading vs Eager Loading in EF Core: Which One Should You Use?
medium.com Issue #295
When to prefer Lazy Loading in EF Core for small datasets, and when Eager Loading works best for APIs and dashboards.
-
⚡ CancellationToken: .NET’s Most Overlooked Superpower
medium.com Issue #294
Imagine this: your .NET web API starts a heavy data-processing task. Then the user closes their browser or the request times out…
-
ASP.NET Community Standup - Vibe coding a C# MCP server
youtube.com Issue #292
Unit testing for a .NET Web API project.
-
ASP.NET Core Application Lifecycle
c-sharpcorner.com Issue #290
Explore the ASP.NET Core application lifecycle, from startup and middleware pipeline to routing, controller execution, model binding, and result execution. Understand how each stage contributes to han...
-
🚀 Generating .NET Core Projects with AI (Codeium/Windsurf)
c-sharpcorner.com Issue #288
Discover how Windsurf (formerly Codeium), an AI coding assistant, revolutionizes .NET Core development. Learn to generate entire Web API projects with CRUD endpoints, Entity Framework Core integration...
-
Implementing API Versioning in ASP.NET Core
medium.com Issue #286
Practical API versioning for Minimal APIs and MVC.
-
How To Implement HttpClient in C# (4 Ways)
medium.com Issue #286
HttpClient in .NET simplifies calling REST APIs by sending HTTP requests and receiving responses. It supports GET, POST, PUT, and DELETE…
-
Performance, security, and EF Core tips
DotNetNews Issue #285
A varied roundup of .NET posts on faster code, safer ASP.NET Core apps, EF Core migrations, Azure slots, logging, and team Git workflows.
-
What is an API?
c-sharpcorner.com Issue #284
Unlock the power of APIs! This guide explains what APIs are, how they work, and why they're essential for modern software development. Learn about different API architectures like REST and SOAP, under...
-
File and Input Security in ASP.NET Core MVC and Web API Applications Introduction
c-sharpcorner.com Issue #283
Protect your ASP.NET Core MVC and Web API applications from critical vulnerabilities! This article provides essential best practices for securing file uploads and user inputs. Learn how to prevent SQL...
-
Stop Guessing in ASP.NET
blog.stackademic.com Issue #282
A practical breakdown with real-world scenarios that will help you choose the right setup every time — whether you’re building APIs, MVC… Continue reading on Stackademic »