top of page
Search
The Tech Platform
Feb 19
Advanced Techniques for Optimizing Blazor WebAssembly Applications
Blazor WebAssembly is a revolutionary framework that allows developers to build interactive web applications using C# and .NET, instead...
The Tech Platform
May 30, 2023
How to fix Cache Issues in ASP.NET Application
Caching is an essential technique used in ASP.NET applications to improve performance by storing frequently accessed data in memory. By...
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 17, 2022
Data Protection in ASP.NET Core
In web development, keeping sensitive data safe is a top priority. ASP.NET Core recognizes this need and offers a powerful solution – the...
The Tech Platform
Jul 22, 2022
Create a web API using minimal API ASP.NET Core
Minimal APIs are architected to create HTTP APIs with minimal dependencies. They are ideal for microservices and apps that want to...
The Tech Platform
Jul 7, 2022
Configure Multiple DBs with Repository pattern in .Net Core
To configure mongoDB, we need to install mongoDB driver for C#, this we can install via NuGet package manager. After installation we need...
The Tech Platform
Jun 24, 2022
Run and manage periodic background tasks in ASP.NET Core 6 with C#
So starting from the empy ASP.NET Core 6 template let’s create a simple sample service that represents our business logic that should be...
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 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
May 14, 2022
How to log data to SQL Server in ASP.NET Core
Logging is an important aspect of software development, as it provides insights into how an application behaves and helps to identify and...
bottom of page