Job Offloading Pattern with System.Threading.Channels. A way to deal with long-running tasks in .NET

This post shows you how to implement Job Offloading Pattern using an a pipeline built with System.Threading.Channels

Building pipelines with System.Threading.Channels

This post shows you how to build pipelines based on System.Threading.Channels and Open.ChannelExtensions

Polymorphic serialization via System.Text.Json in ASP.NET Core Minimal API

In this article, we will explore the process of serializing a model hierarchy using `System.Text.Json` and how to accurately represent this serialized data in OpenAPI 3.0.

Transactional Outbox in .NET Cloud Native Development via Aspire

This post provides an example of the Outbox pattern implementation using Aspire, DotNetCore.CAP, Azure Service Bus, Azure SQL, Bicep, and azd.

A Guide to OpenAPI Client Generation with Kiota. Deep dive (Part 2)

This post provides a deep dive into OpenAPI client generation with Kiota, covering topics such as SDK generation, dependency injection, typed HTTP clients, cross-cutting concerns, and testing.

A Guide to OpenAPI Client Generation with Kiota. Introduction (Part 1)

Introduces Kiota, explaining its purpose and relevance in the context of OpenAPI client generation. Highlights its features and benefits.

Building a federated search engine from scratch. An introduction.

Federated search, also known as distributed information retrieval, is the simultaneous search of multiple searchable resources. Learn more about it in this blog post.