How To
Using cookies in ASP.NET Core
By Tan Lee Published on Jan 07, 2025 298
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 218
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 175
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 429
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 92
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 189
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 199
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 294
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 338
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 269
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 475
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.
How to use Parallel LINQ in C#
By Tan Lee Published on Jan 07, 2025 115
Parallel LINQ (PLINQ) is an extension of Language Integrated Query (LINQ) that enables declarative data parallelism by utilizing multiple cores in a system to execute queries in parallel.