Tag: C#
-
Building Scalable Applications with .NET 8, Blazor, and Microservices
In this article, we’ll explore how Blazor and microservices work together, discuss API integration patterns, and walk through code examples to build a real-world scalable application. Read more
-
Entity Framework vs Repository Pattern vs Unit of Work
In this article, we’ll explore the pros and cons of these three approaches and help you decide which one fits best for your project. Read more
-
Maximize Performance in Blazor WebAssembly
This article explores essential optimization techniques, supported by practical examples, to help you maximize performance in Blazor WebAssembly applications. Read more
-
.NET 9 Hybrid Cache: The Future of Multi-Level Caching
In this article, we’ll demonstrate how to set up, register, configure, and use Hybrid Cache, including examples of the DefaultHybridCache implementation. Read more
-
Understanding the params Collection in C# 13
The params keyword provides a more streamlined and flexible way to handle a variable number of arguments in a method, enabling developers to call methods with any number of parameters without needing to explicitly create arrays or collections. Read more