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);   
December 12, 2023

LINQ: let Clause

In this post, let’s see what let is in LINQ query-syntax queries. I think it’s an overlooked feature in LINQ. Let’s consider the following query. IQueryable<string> wfhEmployees = from e in context.Employees                       &
October 9, 2023

Beyond Speed and Specs – Why Genuine SBC and MCU’s are the right choice for your project

Decisions, we all make them. You may make a decision based on specifications, performance, time to value supportability and so on. There are many dimensions, and […]