Resilient Modern Apps with Polly in .NET - Retry Pattern2023, Sep 02 — 6 minute readModern Apps should be resilient, catering for transient faults when communicating with services. In this post, the retry pattern is…
Visitor Pattern with C# - Real World Tax Example2023, Aug 19 — 5 minute readThe Visitor pattern is a behavioural design pattern, allowing new operations to be created or executed by the object, without modifying its…
Out-Of-Process Azure Functions with Fluent Validation2023, Aug 02 — 4 minute readCreating Azure Functions has never been easier, thanks to the Out-Of-Process (Isolated) model, which allows us to effortlessly hook services…
Messaging with MassTransit and Azure Service Bus in .NET 72023, Aug 01 — 10 minute readAzure Service Bus is a fully managed enterprise integration message broker. In this post, let's explore an example of how to implement…
YouTube Presentation - A pragmatic approach with Clean Architecture in .NET projects - Lesson 22023, Jul 24 — 1 minute readGreat presentation available on Coding Night NZ channel about A pragmatic approach with Clean Architecture in .NET projects - Lesson 2.
Messaging with MassTransit and RabbitMQ in .NET 72023, Jul 18 — 8 minute readMessaging plays a crucial role in enabling loosely coupled and scalable architectures. MassTransit and RabbitMQ provide a powerful…
YouTube Presentation - Global Azure - Getting started with Data API builder for Azure Databases2023, Jul 01 — 1 minute readGreat presentation available on Aotearoa Azure Meetup channel. The Global Azure 2023 event happened at Microsoft Auckland on May 12th, 202…
Azure Functions running in Azure Container Apps with Dapr2023, Jun 13 — 14 minute readIn case your organization has embraced containers in its strategy, it's worth noting that Azure Container Apps now can host and enable the…
Manually trigger timer-triggered Azure Functions. Did you know?2023, Jun 01 — 2 minute readThere is a way to manually trigger any timer-triggered Azure Functions via API request. It is an approach valid for all non-HTTP-triggered…
Is the Azure Function response status code always HTTP 200? Did you know?2023, May 27 — 3 minute readIs the Azure Function response status code always HTTP 200? Can I change that? It depends on your implementation. The issue Most ASP.NET…