top of page
Search


Create a web socket server in .NET
Creating a web socket (WS) server in C# can be a drag these days. There are several methods you can find online, and there does not seem...

The Tech Platform
Aug 8, 2022


Introduction to SQL Injection Attacks
SQL injection attacks pose a significant threat to web applications that rely on SQL databases. These attacks allow hackers to exploit...

The Tech Platform
Aug 4, 2022


Full-Text Search with Entity Framework Core & SQL Server
When it comes to searching for addresses in a database table, a typical approach involves using the SQL Like (%) operator for an exact...

The Tech Platform
Aug 4, 2022


Compiler: Definition, Architecture, Advantages and Disadvantages
The Compiler is a computer program that translate the high-level language (source code) into a computer-readable format known as...

The Tech Platform
Aug 2, 2022


How to Format Response Data in ASP.NET Core
In web development, the transmission of data between a server and a client is a fundamental aspect. Response data, representing the...

The Tech Platform
Aug 2, 2022


Mapped Types in TypeScript
Mapped types allow you to create new types from existing ones by mapping over property types. Each property of the existing type is...

The Tech Platform
Aug 1, 2022


Network Graph in Python
A network graph is a chart that displays relations between elements (nodes) using simple links. Network graph allows us to visualize...

The Tech Platform
Aug 1, 2022


Different ways to get the sum of arrays in JavaScript?
In JavaScript, array is a single variable that is used to store different elements. It is often used when we want to store list of...

The Tech Platform
Jul 29, 2022


Introduction to Controller in ASP.NET Core
What is Controller ? The Controller in MVC architecture handles any incoming URL request. The Controller is a class, derived from the...

The Tech Platform
Jul 29, 2022


What is middleware in .NET? How it Works?
In .Net 5, middleware plays a vital role to handle the request-response pipeline. In here we are going to discuss the concept of...

The Tech Platform
Jul 28, 2022
bottom of page
