How To

How to use MiniProfiler in ASP.NET Core
By Tan Lee Published on Jan 07, 2025 341

Web application performance is a global concern, and developers have various tools to identify performance issues.

Using cookies in ASP.NET Core
By Tan Lee Published on Jan 07, 2025 453

A cookie is a small data file stored on a user's computer to hold information about the user. While most browsers store cookies as individual files, Firefox stores them together in one file.

How to use MediatR in ASP.NET Core
By Tan Lee Published on Jan 07, 2025 336

MediatR is an open-source implementation of the mediator design pattern, which helps manage communication between objects.

How to use Nancy in ASP.NET Core
By Tan Lee Published on Jan 07, 2025 263

Nancy is a simple, lightweight framework designed for creating HTTP-based services.

How to use IHostedService in ASP.NET Core
By Tan Lee Published on Jan 07, 2025 614

In ASP.Net Core, you can implement background tasks by using Azure WebJobs or various third-party task schedulers such as Quartz or Hangfire.

How to create a RESTful service in WCF
By Tan Lee Published on Jan 07, 2025 168

WCF (Windows Communication Foundation) is a messaging platform in .NET for building secure, reliable, and scalable web services.

Effective Strategies to Prevent High CPU Usage
By Tan Lee Published on Jan 07, 2025 288

Application performance has always been a critical factor, influenced by various elements.

Hashtable vs Dictionary in C#
By Tan Lee Published on Jan 07, 2025 304

The Microsoft .NET Framework offers strong support for working with collections, which are used to store and retrieve data.

How to access the Windows Registry in C#
By Tan Lee Published on Jan 07, 2025 431

Microsoft .NET allows you to interact with the Windows Registry programmatically, enabling you to store and retrieve data.

How to use Hangfire in C#
By Tan Lee Published on Jan 07, 2025 474

Hangfire is an open-source job scheduling framework that allows you to schedule fire-and-forget and recurring tasks in web applications without requiring a Windows Service.

How to use serialization in C#
By Tan Lee Published on Jan 07, 2025 387

Serialization is the process of converting an object's state into a stream of bytes, enabling it to be stored in a permanent or temporary medium, like memory, a database, or a file.

How to use Fluent NHibernate in C#
By Tan Lee Published on Jan 07, 2025 629

Fluent NHibernate is an Object-Relational Mapping (ORM) framework that simplifies data access by allowing developers to perform CRUD (Create, Read, Update, Delete) operations without directly interacting with the database.