In this chapter, we will learn what an ORM is and how we can easily connect an API to a data store by using such a tool. We will focus on working with Entity Framework Core and SQL Server. Even though there are many relational databases available, in this book we will use SQL Server Express’ LocalDB feature. This is installed along with Visual Studio and provides a lightweight SQL Server instance that is ready to use on your machine.
Before we dig into any code we need to understand a few concepts and how ...