Azure articles from the community.

March 19, 2024

SQL Down Under show 86 with guest Armando Lacerda discussing SQL Server 2022 snapshot backups and data virtualization is now published

And yet another new SQL Down Under show is published! Once again, I had the great pleasure yesterday to record a podcast with one of my […]
March 15, 2024

Read TLS/SSL Certificate in Azure App Service from C# Code

Recently I was updating an old .NET Core web application to .NET 8 and the code was reading a certificate as follows. private X509Certificate2 GetCertificateByThumbprint(string thumbprint){    X509Store store = new (StoreName.My, StoreLocation.CurrentUser);    store.Open(OpenFlags.ReadOnly);