In the last chapter, we finally created our database using Entity Framework Core 5. In this chapter, we will seed our database with some data. We will add a few sample persons and addresses and load up our lookup tables with some states and countries.
Populating Lookup Data
The OnModelCreating event can also be used to configure the database schema, ...