How to create a CRUD API with ASP.NET Core and Insight.Database

from blog Just Some Code, | ↗ original
Almost all web applications we write talk to a database. We could write our own database access layer, but we might end up with a lot of boilerplate code. Let’s use Insight.Database to create a CRUD API for a catalog of products with ASP.NET Core. 1. Why to use an ORM? An object-relational mapping (ORM) is a library that converts objects to...