top of page
Search

The Tech Platform
Sep 6, 2021
Ways to handle errors in .NET
Error handling is always an essential part of an application. When processing some business logic requests, it’s always necessary to let...

The Tech Platform
Aug 18, 2021
A scratch guide to API versioning in ASP.NET Core
If I call an API with a URL of https://mybandapi.com/api/bands/4, I’ll get the following response: { "id": 4, "name": "The Eagles, man" }...

The Tech Platform
Aug 18, 2021
How to upload a file to a folder in ASP.NET Core MVC
In modern web applications, file uploads are an essential feature. In ASP.NET Core MVC, you can easily implement file-uploading...

The Tech Platform
Jul 20, 2021
How to use Redis and Lua Scripts in a C# ASP.NET Core Microservice Architecture
In this article, we will explore how to use StackExchange.Redis in an ASP.NET Core application to access a Redis server running in...

The Tech Platform
Jul 19, 2021
Decorator Design Pattern in ASP.NET Core
The Decorator design pattern is a structural pattern that allows developers to add functionality to an object dynamically without...


The Tech Platform
Jul 17, 2021
What’s new in Microsoft .NET 6
Microsoft has printed the third preview of .NET 6, the subsequent technology of the corporate’s software program growth platform that may...

The Tech Platform
Jun 28, 2021
How to use Database Sharding and Scale an ASP.NET Core Microservice Architecture
In C# ASP.NET Core, you can implement load balancing for your service while utilizing app-layer sharding with MySql. This approach...

The Tech Platform
May 24, 2021
ASP.NET Core updates in .NET 6 Preview 2
To get started with ASP.NET Core in .NET 6 Preview 2, install the .NET 6 SDK. If you’re on Windows using Visual Studio, we recommend...

The Tech Platform
May 19, 2021
Overview of CQRS pattern
Implementing CQRS using ASP.NET core 5.0 The Command and Query Responsibility Segregation (CQRS) CQRS pattern separates the read and...

The Tech Platform
Apr 26, 2021
How to use and Unit test HttpClient in Asp.net Core
HttpClient is an important component in ASP.NET Core that enables you to send HTTP requests to remote servers and receive HTTP responses...
bottom of page