top of page
Search


Introduction to C# comments
In this article, we explore how to write comments. Comments are simply human-readable pieces of text that are not compiled nor...

The Tech Platform
Aug 31, 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
Aug 18, 2021


How to create a microservice
To create a microservice, we need access to the following tools - Visual Studio (For implementing C# based code for the service) SQL...

The Tech Platform
Aug 2, 2021


What is Cache Busting in .NET?
When a browser requests the server to get a static file, the browser will download this file, and then it will cache them to improve &...

The Tech Platform
Aug 2, 2021


Secrets of .NET Async/Await
Async/await is a feature of the .NET framework that allows developers to write asynchronous code in a more readable and maintainable way....

The Tech Platform
Jul 26, 2021


AutoMapper Extensions in .Net Core
In C# mapping of one POCO class object to another POCO class object can be achieved by assigning source property to destination property...

The Tech Platform
Jul 24, 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
Jul 17, 2021


Micro APIs with OpenFaaS and .NET
Serverless functions are becoming increasingly popular, but not everything fits into that model. And although it is possible to create an...

The Tech Platform
Jul 13, 2021


Send multi-part content to an API from a .NET Core API (.NET 5.0)
Scenario — You are developing a web API that takes form data in its post method. And from that API, you need to call another API that...

The Tech Platform
Jul 13, 2021
bottom of page