Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
To answer the question simply: No, Web APIs are not the same as REST APIs. Web APIs refer to...
Most .NET developers know they should use Microsoft Entra ID (formerly Azure AD) to secure...
Building a Browser-Based Voice-to-Text App with the Web Speech API I recently built a...
1. Introduction When building modern .NET Web API applications, database operations are at...
.NET 10 Data Export API — Minimal APIs, Mapster, Rate Limiting & OpenAPI Done...
TL;DR: Testcontainers lets you run real SQL Server in Docker inside your tests. This guide shows how...
OData with .NET core: Essential Concepts & Best Practices ...
When building an ASP.NET Core application, middleware order is critical. Two common middlewares are...
You don’t always need a faster API — just a smarter cache. Most developers chase performance using...
Hey developers, Here’s a small JWT (JSON Web Token) code snippet in the image but something’s not...
Introduction: Sending emails programmatically is a common requirement for many web...
Adding Rate Limiting to Your .NET Web API (with Settings from appsettings.json) APIs are...
Since v7, Entity Framework has provided support for JSON data types in the database, it means we can...
In the previous post, we added global error handling and logging using NLog. Now that we’ve made our...
🚀 .NET Core's Minimal APIs offer a streamlined approach to building HTTP APIs with reduced...
Ever clicked a button twice and accidentally fired off two API calls? Or maybe you started fetching...
OData (Open Data Protocol) is widely used in RESTful APIs for querying and manipulating data using...
In today’s fast-paced digital world, speed isn’t just a feature—it’s a necessity. Whether you’re...
APIs are like restaurants. 🍴 Your menu = Endpoints Your dishes = Data/Services Your customers = Other...
1. Introduction In modern web applications, not all tasks should run during the main user...
This post is dedicated to one great book that I was lucky to read: “Building Web APIs with ASP.NET...
If you’re a developer debugging browser behavior or just curious about how browsers manage memory and...
1) Select the ASP.NET Core Web API project template 2) Enable OpenAPI support 3) Install...
In modern JavaScript development, managing asynchronous tasks such as data fetching, animations,...
Feature Web API REST API Definition A framework for building HTTP-based services in .NET Core...
In the previous post, we have paid attention on our project structure and organizing the code in...
Security is no longer an afterthought — it’s the foundation. In 2025, with APIs powering everything...
The example in the github repository below shows a simple implementation of two microservices (.NET 8...
What is API versioning API versioning helps you to manage and maintain different versions...
HTTP methods are essential in Web API (.NET) to define how clients interact with a server. Methods...