Summary
In this chapter, we learned about Entity Framework Core 5. We created a database using SQLite and used migrations to create the database. Most applications use some kind of data, so knowing how to use a database together with Blazor is very important.
We also created an API to access the database (which will become important when we take a look at sharing resources between projects in Chapter 9, Sharing Code and Resources).
In the next chapter, we will learn about components, particularly the built-in components in Blazor templates. We will also create our first component using the API and database we created in this chapter.