How To
How to use the Unit of Work pattern in ASP.NET Core
12/31/2024 7:32:09 AM 175
The Unit of Work design pattern is an essential technique in software development, particularly when building scalable, maintainable, and reusable data access layers in ASP.NET Core applications.
How to use API keys to secure web APIs in ASP.NET Core
12/31/2024 6:47:18 AM 146
API key authentication is a method used to control which applications or services can access your APIs.
Action, Func, and Predicate delegates in C#
12/31/2024 6:38:05 AM 170
Delegates in C# are powerful tools that help manage method callbacks and provide flexibility in code.
How to use OpenAPI in ASP.NET Core
12/31/2024 6:27:02 AM 181
In ASP.NET Core, you can easily document your HTTP endpoints using OpenAPI support, which includes Swagger UI for a graphical interface.
Speeding Up Searches with SearchValues in .NET 8
12/31/2024 4:59:55 AM 166
With the release of .NET 8, Microsoft introduced the SearchValues class, a new addition that leverages vectorization and hardware acceleration to improve search performance.
How to use FastEndpoints in ASP.NET Core
12/31/2024 3:26:09 AM 282
FastEndpoints is a free, open-source framework designed to create lightweight and fast REST APIs in .NET Core.
How to use HybridCache in ASP.NET Core
12/31/2024 3:23:23 AM 196
Caching is a key strategy for improving application performance and scalability.
How to use Refit to consume APIs in ASP.NET Core
12/31/2024 2:59:41 AM 184
Refit is a powerful library designed to streamline API consumption in .NET, .NET Core, and Xamarin.
abstract class vs interface in C#
12/31/2024 2:49:28 AM 108
When designing flexible and maintainable applications, it's important to understand the differences between abstract classes and interfaces.
How to implement identity authentication using Minimal APIs in ASP.NET Core
12/31/2024 2:31:50 AM 254
Minimal APIs offer a lightweight approach to building APIs with minimal dependencies, but authentication and authorization are still often necessary.
How to use Dapper with SQLite in ASP.NET Core
12/31/2024 2:20:21 AM 289
When building .NET and .NET Core applications that rely on databases, developers often seek a lightweight and fast database engine to speed up testing and development.
How to Use the New Minimal API Features in ASP.NET Core
12/31/2024 2:17:54 AM 136
In ASP.NET Core 8, several new features have been introduced to enhance the development of minimal APIs.