top of page
Search
The Tech Platform
Apr 28, 2022
Parsing Text File By Span and Memory
We will write a method and the method will read all of the text inside the file then it will count the occurrences of the words. Like a...
The Tech Platform
Apr 21, 2022
Implement Pagination in ASP.NET MVC
Pagination is a common requirement in web applications that deal with large amounts of data. In ASP.NET MVC, pagination can be...
The Tech Platform
Apr 12, 2022
Migrating ASP.NET Core data protection with zero downtime
Problem: How do we migrate from a key ring which is protected by Key Vault, to a key ring which is protected by a certificate, without...
The Tech Platform
Apr 11, 2022
LINQ to SQL in ASP.Net With CRUD Operations
Language-Integrated Query (LINQ) In Language-Integrated Query (LINQ) to SQL, the data model of a relational database is mapped to an...
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
Apr 5, 2022
Different Ways to Inject Dependencies in .NET Core
It is impossible nowadays to design classes/controllers which don’t depend on other objects. Rather than instantiating those objects...
The Tech Platform
Apr 4, 2022
8 Tips and Tricks for Writing the Best Queries in LINQ to Entities
LINQ is a powerful querying tool for .NET applications. There are certain techniques to follow when writing queries to make sure they run...
The Tech Platform
Apr 4, 2022
Trigger C# functions on specific intervals
Introduction Sometimes we need to perform some action on specified intervals. For example I was working on an application where I needed...
The Tech Platform
Apr 4, 2022
Introduction to Dependency Injection(DI)
Dependency Injection (DI) is a widely adopted design pattern that effectively reduces tight coupling between software components,...
The Tech Platform
Mar 10, 2022
Pattern Matching in C# for Beginners
Pattern matching in C# helps developers handle control flows with variables and types that are not linked by a hierarchy of inheritance....
bottom of page