Fading Coder

One Final Commit for the Last Sprint

Blazor Microservice Communication Patterns

When building modern web applications with Blazor, efficient communication between client and server components is essential. This guide explores how to implement robust microservice communication patterns using HttpClient and related extensions. Setting Up the Project Structure Begin by creating a...

Understanding Services and Dependency Injection

Grasping Dependency Inversion Consider a ProductList component that uses a service class, creating the service instance with the new operator as shown in Listing 5-1. Listing 5-1 Component Using ProductsService @using Dependency.Inversion.Shared @foreach (var product in productsService.GetProducts()...