Posts

C# and AWS Lambdas, Part 2 - Web API and an API Gateway
In the previous post I created a Lambda that executed a C# console application. In this post, I walk through creating a .NET Core 3.1 Web API application inside a Lambda and making it reachable from the web, just like a normal Web API application.
Polly and Blazor, Part 1 - Simple Wait and Retry
A few weeks ago I gave a talk on Polly at Dotnetconf (you can check it out here), at the end, I got many questions about using Polly with Blazor, I had never tried it, but assumed it would work. In this blog, part 1 of a few on Polly and Blazor, I’ll show you how to get a simple retry mechanism up and working in a Blazor Server App. For now, I am not concerned with dependency injections, policy registries, or anything other fancy things in this post, that will come later.