top of page
Search
The Tech Platform
Oct 25, 2023
Web API Endpoints in ASP.NET Core
In today's fast-paced and interconnected digital world, building web applications and services is a common practice for developers and...
The Tech Platform
Jun 14, 2023
Handling Excel files in Web API: Common Approaches
Handling Excel files on web API means creating a web service that can accept, process, and return Excel files as input or output. A web...
The Tech Platform
Oct 17, 2022
Creating an in-memory cache for .NET 6 Web API
Caching is the technique of storing frequently accessed data at a temporary location for quicker access in the future. ASP.NET Core...
The Tech Platform
Aug 17, 2022
How to Return HTML From ASP.NET Core Web API
A typical web API returns JSON or XML responses. However, rare cases exist where we need to return responses in other formats. In this...
The Tech Platform
Jul 27, 2022
How to implement rate limiting in ASP.NET Core
What is Rate Limiting? Rate limiting is a technique used to limit the number of requests that a client can make to a web application or...
The Tech Platform
Jul 22, 2022
Create a web API using minimal API ASP.NET Core
Minimal APIs are architected to create HTTP APIs with minimal dependencies. They are ideal for microservices and apps that want to...
The Tech Platform
Jul 11, 2022
API Testing: Types and Tools
What is API? API (Application Programming Interface) is a computing interface which enables communication and data exchange between two...
The Tech Platform
Jun 21, 2022
NLog with ILogger in .Net 6.0 Web API
In software development, where intricate systems and complex functionalities intertwine, logging stands as a silent sentinel, diligently...
The Tech Platform
Apr 14, 2022
Creating Scheduled Jobs Using Hangfire
In this article, we will make a .NET CORE application that sends mail using the Hangfire framework. Without giving much theoretical...
The Tech Platform
Feb 21, 2022
Using DateOnly with .Net 6 WebAPI and Entity Framework
Solving the Entity Framework part We need to tell EF how to handle DateOnly and DateOnly? — so we first need a pair of converters: using...
bottom of page