How To
How to use Refit to consume APIs in ASP.NET Core
12/31/2024 2:59:41 AM 89
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 56
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 123
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 140
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 90
In ASP.NET Core 8, several new features have been introduced to enhance the development of minimal APIs.
How to Build an authentication handler for a minimal API in ASP.NET Core
12/31/2024 2:01:03 AM 177
ASP.NET Core’s minimal API framework provides a lightweight approach to building APIs with minimal overhead, but security is still a priority.
How to host Web API in a separate process
12/30/2024 3:25:20 PM 65
Web APIs are essential for building RESTful services that communicate over HTTP, providing a lightweight, stateless, and scalable architecture.
Asynchronous operations in ADO.Net
12/30/2024 9:52:55 AM 64
In this article, we explore asynchronous programming basics and demonstrate how to implement it in ADO.NET and Entity Framework for database operations.
Optimizing LINQ Query Performance
12/30/2024 9:51:50 AM 50
The post provides tips and best practices for optimizing LINQ (Language Integrated Query) performance.
Windows Management Instrumentation in C#
12/30/2024 9:35:44 AM 90
This article provides an overview of Windows Management Instrumentation (WMI) technology and demonstrates how to use WMI with the WMI Query Language (WQL) in C#.
Exception handling in WCF
12/30/2024 8:58:00 AM 39
In WCF (Windows Communication Foundation), handling exceptions becomes more complex due to its reliance on sending .NET objects over the wire and serialized data (e.g., SOAP messages).
Improving Web API performance
12/30/2024 8:39:20 AM 69
To improve the performance of your Web API services, you can apply several optimization techniques.