top of page
Search

The Tech Platform
Feb 10, 2022
Using Static Files (HTML, CSS,JS) In ASP .NET Core Web API
In this article, we will see how to add static files or groups of static files to an existing ASP.Net Core web API project. As we all...

The Tech Platform
Feb 7, 2022
Multiple Request/Response examples for Swagger UI in ASP.NET core
How to add multiple examples for request/response or JsonPatch request in SwaggerUI with Swashbuckle. In this short tutorial, we are...

The Tech Platform
Feb 5, 2022
Consume Web API with C# HttpClientFactory
Sometimes we need to integrate an external API into our code even as a backend service and not just the frontend integrating with the UI...

The Tech Platform
Jan 31, 2022
How to properly dispose in AspNetCore application?
The quick answer implies that your AspNetCore aplication is stateless. Meaning that all state that is required for your application to...

The Tech Platform
Jan 28, 2022
Global Exception Handling in .NET 6
Exception handling is one of the important tasks in the application development cycle. Today, I am planning to tell you the effective way...

The Tech Platform
Jan 27, 2022
How to send emails in .Net Core Web API
Sending emails is an integral part of web development and a better way to connect with your users and keep them up to date with...

The Tech Platform
Jan 25, 2022
Testing file upload with Swagger in ASP.Net core
Let’s assume you have an API which is used for uploading image to the backend and you wanted to test it when the UI is still in...


The Tech Platform
Jan 17, 2022
Concurrency vs Parallelism
Concurrency Concurrency relates to an application that is processing more than one task at the same time. Concurrency is an approach that...

The Tech Platform
Dec 28, 2021
What is State Management in ASP.NET?
State management in ASP.NET refers to the process of maintaining the state of a web application between requests from the same user. In...

The Tech Platform
Dec 27, 2021
Repository Pattern with Entity framework in ASP.NET Core 6.0
Repository pattern is quite famous pattern in .NET world while accessing backend data using ORM (Object-Relational Mapping) system such...
bottom of page