Azure Functions in Late 2022
I’ve been catching up with Azure Functions recently, and one thing I learned is that setting up your development environment, project structure and Azure DevOps pipeline is not as straightforward as I’d expect. The goal of this article is to help you with that. I recommend that you first read the guidelines for running C# […]
Natural Keys and Surrogate Keys in Entity Framework
In a nutshell, this post is going to be about using natural and surrogate keys in Entity Framework. Definitions and a Simple Example A surrogate key is a key (the type doesn’t really matter) with no business meaning that is used to uniquely identify a record in a table. A natural key, on the other […]