Why I love Resharper 3

Learning new language features can be hard. Applying them can be tricky. How does Resharper aid with filescoped namespaces?

December 9, 2021 · 2 min

Runtime Dependency Resolution Using AutoFac in .NET 6 Isolated Azure Functions

Need to specify a dependency at runtime in an Azure Function? Can it be done?

November 30, 2021 · 7 min

Using AutoFac Keyed Dependencies Directly in .NET 6 Isolated Azure Functions

Autofac allows for using Named or Keyed dependencies. Can these be used directly in .NET 6 Isolated Azure Functions without additional layers?

November 26, 2021 · 6 min

Using AutoFac Keyed Dependencies with .NET 6 Isolated Azure Functions

Autofac allows for using Named or Keyed dependencies. Can these be used with .NET 6 Isolated Azure Functions?

November 19, 2021 · 5 min

Using AutoFac with .NET 6 Isolated Azure Functions

Having the ability to use the Inversion of Control container of choice in your application is important. But can you use AutoFac with Azure Functions? Let’s find out!

November 9, 2021 · 3 min

Using Azure Functions Middleware to Access ClaimsPrincipal in Azure Static Web Apps

Wanted to access the current ClaimsPrincipal from your Azure Function when using Azure Static Web Apps without manually parsing the header every time? Want to access the ClaimsPrincipal somewhere else in your dependency graph without relying on Azure Functions concepts? Now you can!

November 2, 2021 · 9 min

Is Accessing Querystring Values in Azure Functions Hard?

Accessing querystring values on web requests is an important concept for any modern APIs. But how can it be done in Azure Functions?

September 22, 2021 · 3 min

Separate the Metadata Noise from the Implementation in Azure Functions

Can lesser known C# language features be used to aid with lower the cognative noise in Azure Function definitions?

September 14, 2021 · 8 min

Minimal Api in .NET 6 Out Of Process Azure Functions

Can you write a “Minimal Api” using Azure Functions in .NET 6.0? Let’s take a look!

September 7, 2021 · 10 min

When is not null not null but checking not null in .NET 6

With the new .NET version due to drop in November and the advent of C# 10 there are a number of improvements to the language but are they helping or hindering? Let’s explore one of the common patterns we see in C# and how the language is changing around this area.

August 31, 2021 · 3 min