top of page
Search

The Tech Platform
Jun 11, 2022
C# Optimization: Tips and Tricks
What is Optimization? Optimization is a program transformation technique, which tries to improve the code by making it consume less...

The Tech Platform
Jun 10, 2022
How to export data to Excel in ASP.NET Core
When needing to export data to Excel, you have a couple of different options. If you need simple tabular data, generating a CSV file may...

The Tech Platform
Jun 8, 2022
What is Impersonation ASP.NET?
Impersonation is a process of temporarily assuming the identity of another Windows account. This process does not give you the ability to...

The Tech Platform
Jun 6, 2022
Dapper vs Entity Framework 6 Detailed Benchmark
Dapper is a lightweight tool that is developed by the StackOverflow developer team as a micro-ORM. On the other hand, Entity Framework is...

The Tech Platform
Jun 6, 2022
C# Programming Language: Hashtables
Hashtables can be used to store a collection of data, similar to that of a normal list. The main difference is that a Hashtable can store...

The Tech Platform
Jun 3, 2022
How to use endpoint routing in ASP.NET Core 3.0 MVC
The Endpoint Routing is the Process by which ASP.NET Core inspects the incoming HTTP requests and maps them to applications executable...

The Tech Platform
Jun 1, 2022
Options Pattern in C#: How to supply <IOptions>
The IOptions service is used to bind strongly types options class to configuration section and registers it to the Asp.Net Core...

The Tech Platform
Jun 1, 2022
Creating a Menu Bar UI with .NET MAUI Preview 14
In this blog, We will create a photo viewer and editor .NET MAUI desktop application and integrate the menu bar in it. Create photo...

The Tech Platform
May 31, 2022
11 Best Productivity Tools for Developers
Productivity tools for developers can easily save the day and make work faster, easier, and more efficient. They can also help relieve...

The Tech Platform
May 30, 2022
How to handle 404 errors in ASP.NET Core MVC
In ASP.NET Core MVC, a 404 error (also known as HTTP error 404) occurs when the server cannot find the requested resource or page. This...
bottom of page