Writing your ASP.NET in C# is not the only option. With Giraffe you can write you controllers in F#. Also covered: Tech Empower benchmarks https://www.techempower.com/benchmarks/#section=data-r19&hw=ph&test=composite
In this episode, we close off our series exploring Microsoft.FeatureManagement and Azure App Configuration. See how the Azure App Configuration service makes it easy to manage feature flags in your ASP.NET Core applications.
Previous Episodes:
#158 - Azure App Configuration https://youtu.be/npcTS3ZNY1k
#160 - Azure App Config for Full Framework https://youtu.be/AVxG3N6jjlQ
#163 - Getting Started with Feature Flags - https://youtu.be/uZ7vnvSjUEs
#163 - Using Feature Filters in Microsoft.FeatureManagement - https://youtu.be/uZ7vnvSjUEs
#166 - Staged Rollouts with Microsoft.FeatureManagement - https://youtu.be/uZ7vnvSjUEs
When sharing a URL to a specific page in your Razor Page application via email, you need the ability to generate an absolute URL. In this week’s episode, Monster Dave shows us the easy way to do that.
TLDW:
Url.PageLink(“/Register”, values: new { code = “MyUnique Code” });
Continuing our series exploring the Microsoft.FeatureManagement library for ASP.NET Core. In this episode, we dive explore the TargetingFilter which can be used to roll out a feature to a subset of users.
GitHub Repo: https://github.com/AspNetMonsters/EP166_FeatureManagementTargetingSample
Previous Episodes:
#163 - Getting Started with Feature Flags - https://youtu.be/uZ7vnvSjUEs
#164 - Feature Filters - https://youtu.be/V92ewvGgSVk
Polly the transient application error handling block for .NET is able to handle some pretty complex scenarios. In this episode we’ll expand on the simple retry we set up in a previous episode (https://youtu.be/sjL0w8YrIq4) by handling multiple kinds of errors and introducing WaitAndRetry for exponential back-off.
In our second episode in the series exploring Feature Flags using the Microsoft.FeatureManagment library, Monster Dave explores the built in Percentage and TimeWindow feature filters. Feature filters allow us to go beyond simple On / Off settings for features in our application.
Previous Episode - #163: Getting Started with Feature Flags - https://youtu.be/uZ7vnvSjUEs
I moved one of the products I help maintain over to using Azure’s excellent App Configuration tool. But one of the other developers on the team started to have problems with it. When loading the configuration in Azure Functions they got an error: The access token has expired
In today’s episode, Monster Dave get’s us started with Feature Flags in ASP.NET Core using the Microsoft.FeatureManagement library. Watch to see how easy it is to incorporate Feature Flags into an existing application, giving you the ability to turn features on and off using simple ASP.NET Core configuration.