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
Apr 13, 2023
What is the role of OWIN in ASP.NET? How can you use it to build custom middleware?
OWIN (Open Web Interface for .NET) middleware provides a powerful way to add functionality to ASP.NET applications in a modular and...
The Tech Platform
Nov 9, 2022
Azure Application Insights in ASP.NET Core
Azure Application Insights is an extensible application performance management (APM) service that can be used to monitor performance,...
The Tech Platform
Oct 28, 2022
Cookies in ASP.NET Core
In web development, cookies play a crucial role in maintaining the session state and improving the browsing experience for users. Cookies...
The Tech Platform
Oct 27, 2022
URL Rewriting Middleware in ASP.NET Core
URL rewriting is the act of modifying request URLs based on one or more predefined rules. URL rewriting creates an abstraction between...
The Tech Platform
Sep 6, 2022
How to perform asynchronous methods using Dapper?
In this article, we'll explore how to use Dapper in an asynchronous manner to perform database operations using async/await. Dapper is a...
The Tech Platform
Jun 20, 2022
How to use LoggerMessage in ASP.NET Core
ASP.NET Core is a popular web framework that allows developers to build modern, high-performance web applications using the .NET...
The Tech Platform
May 20, 2022
"Var" Keyword in C#
Var is a keyword, it is used to declare an implicit type variable, that specifies the type of a variable based on initial value. The var...
The Tech Platform
Apr 5, 2022
C# Delegates: Func Delegate, Action Delegate and Predicate Delegate
A delegate is an object which refers to a method or you can say it is a reference type variable that can hold a reference to the methods....
The Tech Platform
Mar 7, 2022
Interoperability Feature in C#?
Interoperability is all about the ability of a system to communicate with components of another system. To understand it in detail, let’s...
bottom of page