top of page
Search


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...

The Tech Platform
May 14, 2022


Asp.net core RateLimit with ActionFilters
In today's world, APIs are very crucial for most web applications. The usage of APIs has been increasing day by day, and so is the need...

The Tech Platform
May 9, 2022


Define DTO(Data Transfer Object). How to use Data Transfer Objects in ASP.NET Core 3.1
Data Transfer Object (DTO) a Data Transfer Object (DTO) is a pattern used to transfer data between software components, particularly...

The Tech Platform
May 5, 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 21, 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 12, 2022


Top .NET Interview Questions and Answers
Q-1: What is the .NET framework? The .NET framework supports an object-oriented approach that is used for building applications on...

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 11, 2022


Authentication in ASP.Net Core
A step-by-step guide for user authentication in your ASP.Net Core Web Apps Authenticating a user is one of the basic and most widely...

The Tech Platform
Apr 8, 2022


Difference between AddScoped and AddTransient in .NET 6
To access the .NET Core DI functionality, your app must have references to Microsoft.Extensions.DependencyInjection NuGet package....

The Tech Platform
Feb 22, 2022


Using DateOnly with .Net 6 WebAPI and Entity Framework
Solving the Entity Framework part We need to tell EF how to handle DateOnly and DateOnly? — so we first need a pair of converters: using...

The Tech Platform
Feb 21, 2022
bottom of page