Exercise - Migrations

Completed

In this unit, you'll create C# entity classes that will map to tables in a local SQLite database. EF migrations will produce tables from those entities. Migrations provide a way to incrementally update the database schema.

Obtain the project files

If you're using GitHub Codespaces, just navigate to the repository in your browser, select Code, and then create a new codespace on the main branch.

If you aren't using GitHub Codespaces, obtain the project files and open them in Visual Studio Code with the following steps:

  1. Open a command shell and clone the project from GitHub using the command line:

    git clone https://github.com/MicrosoftDocs/mslearn-persist-data-ef-core
    
  2. Navigate to the mslearn-create-razor-pages-aspnet-core directory and open the project in Visual Studio Code:

    cd mslearn-create-razor-pages-aspnet-core
    code .
    

Tip

If you've got a compatible container runtime installed, you can use the Dev Containers extension to open the repository in a container with the tools preinstalled.

  1. Review the code:

    • The project, an ASP.NET Core web API, is located in the ContosoPizza directory. The file paths referred to in this module are relative to this directory.
    • Services/PizzaService.cs is a service class that defines CRUD (Create, Read, Update, Delete) methods. All the methods currently throw System.NotImplementedException.
    • In Program.cs, PizzaService is registered with ASP.NET Core's dependency injection system.
    • Controllers/PizzaController.cs is an ApiController that exposes an endpoint for HTTP POST, GET, PUT, and DELETE verbs. These verbs call the corresponding CRUD methods on PizzaService. PizzaService is injected into PizzaController's constructor.
    • The Models folder contains the models used by PizzaService and PizzaController.
    • The entity models, Pizza.cs, Topping.cs, and Sauce.cs, have the following relationships:
      • A pizza may have one or more toppings.
      • A topping may be used on one or many pizzas.
      • A pizza may have one sauce, but a sauce may be used on many pizzas.
  2. In the Explorer, right-click on the ContosoPizza directory and select Open in Integrated Terminal. This opens a terminal pane scoped to the ContosoPizza directory.

  3. Build the app with the following command:

    dotnet build
    

    The code should build with no warnings or errors.

Add NuGet packages and EF Core tools

The database engine you'll be working with in this module is SQLite. SQLite is a lightweight, file-based database engine. It's a good choice for development and testing, and it's also a good choice for small-scale production deployments.

Note

As mentioned earlier, database providers in EF Core are pluggable. SQLite is a good choice for this module because it's lightweight and cross-platform. You can use the same code to work with different database engines, such as SQL Server and PostgreSQL. You can even use multiple database engines in the same app.

Before you start, you need to add the required packages.

  1. From the terminal, run the following command:

    dotnet add package Microsoft.EntityFrameworkCore.Sqlite
    

    This command adds the NuGet package that contains the EF Core SQLite database provider and all its dependencies, including the common EF Core services.

  2. From the terminal, run the following command:

    dotnet add package Microsoft.EntityFrameworkCore.Design
    

    This command adds packages required for the EF Core tools.

  3. From the terminal, run the following command:

    dotnet tool install --global dotnet-ef
    

    This command installs dotnet ef, the tool you'll use to create migrations and scaffolding.

    Tip

    If dotnet ef is already installed, you can update it with dotnet tool update --global dotnet-ef.

Wire up models and DbContext

Now you'll add and configure a DbContext implementation, which will serve as the gateway through which you'll interact with the database.

  1. Right-click on the ContosoPizza directory and add a new folder called Data.

  2. In the Data directory, create a new file named PizzaContext.cs. Add the following code to the empty file:

    using Microsoft.EntityFrameworkCore;
    using ContosoPizza.Models;
    
    namespace ContosoPizza.Data;
    
    public class PizzaContext : DbContext
    {
        public PizzaContext (DbContextOptions<PizzaContext> options)
            : base(options)
        {
        }
    
        public DbSet<Pizza> Pizzas => Set<Pizza>();
        public DbSet<Topping> Toppings => Set<Topping>();
        public DbSet<Sauce> Sauces => Set<Sauce>();
    }
    

    In the preceding code:

    • The constructor accepts a parameter of type DbContextOptions<PizzaContext>. This allows external code to pass in the configuration, so the same DbContext can be shared between test and production code and even used with different providers.
    • The DbSet<T> properties correspond to tables to be created in the database.
    • The table names will match the DbSet<T> property names in the PizzaContext class. This behavior can be overridden if needed.
    • When instantiated, PizzaContext will expose Pizzas, Toppings, and Sauces properties. Changes you make to the collections exposed by those properties will be propagated to the database.
  3. In Program.cs, replace // Add the PizzaContext with the following code:

    builder.Services.AddSqlite<PizzaContext>("Data Source=ContosoPizza.db");
    

    The preceding code:

    • Registers PizzaContext with ASP.NET Core's dependency injection system.
    • Specifies that PizzaContext will use the SQLite database provider.
    • Defines a SQLite connection string that points to a local file, ContosoPizza.db.

    Note

    For SQLite, which uses local database files, it's probably okay to hardcode the connection string like this. However, for network databases like PostgreSQL or SQL Server, you should always store your connection strings securely. For local development, use Secret Manager. For production deployments, consider a service like Azure Key Vault.

  4. Also in Program.cs, replace // Additional using declarations with the following code.

    using ContosoPizza.Data;
    

    The preceding code resolves dependencies in the previous step.

  5. Save all your changes. Github Codespaces saves your changes automatically.

  6. Build the app in the terminal with dotnet build. The build should succeed with no warnings or errors.

Create and run a migration

You've done all you need to create a migration that you can use to create your initial database.

  1. Run the following command to generate a migration for creating the database tables:

    dotnet ef migrations add InitialCreate --context PizzaContext
    

    In the preceding command:

    • The migration is given a name of InitialCreate.
    • The --context option specifies the name of the class in the ContosoPizza project, which derives from DbContext.

    A new Migrations directory appears in the ContosoPizza project root. The directory contains a <timestamp>_InitialCreate.cs file describing database changes to be translated to a Data Definition Language (DDL) change script.

  2. Run the following command to apply the InitialCreate migration:

    dotnet ef database update --context PizzaContext
    

    Executing the preceding command applies the migration. Since ContosoPizza.db doesn't exist, it's created in the project directory.

    Tip

    The dotnet ef tool is supported on all platforms. In Visual Studio on Windows, it's also possible to use the Add-Migration and Update-Database PowerShell cmdlets in the integrated Package Manager Console window.

Inspect the database

EF Core created a database for your app. Let's take a look inside the database using the SQLite extension.

  1. In the EXPLORER, right-click on the ContosoPizza.db file. Select Open Database.

    The Open Database menu option

    A SQLITE EXPLORER pane opens on the EXPLORER.

    The SQLite pane (collapsed)

  2. Expand the SQLITE EXPLORER pane and all its child nodes. Right-click ContosoPizza.db. Select Show Table 'sqlite_master' to view the full database schema and constraints created by the migration.

    The SQLite Explorer pane

    • Tables have been created corresponding to each entity.
    • Table names were taken from the names of the DbSet properties on the PizzaContext.
    • Properties named Id were inferred to be auto-incrementing primary key fields.
    • EF Core's primary key and foreign key constraint naming conventions are PK_<Primary key property> and FK_<Dependent entity>_<Principal entity>_<Foreign key property>, respectively. The <Dependent entity> and <Principal entity> placeholders correspond to the entity class names.

    Note

    As is true with ASP.NET Core MVC, EF Core adopts a convention over configuration philosophy. EF Core conventions shorten development time by inferring the developer's intent. For example, a property named Id or <entity name>Id is inferred to be the generated table's primary key. If you choose not to adopt the naming convention, the property must be annotated with the [Key] attribute or configured as a key in the OnModelCreating method of the DbContext.

Change the model and update the database schema

Your manager at Contoso Pizza has given you some new requirements that force you to change your entity models. In the following steps, you're going to modify the models using mapping attributes, sometimes also called "data annotations."

  1. In Models\Pizza.cs, make the following changes:

    1. Add a using directive for System.ComponentModel.DataAnnotations.
    2. Add a [Required] attribute before the Name property to mark the property as required.
    3. Add a [MaxLength(100)] attribute before the Name property to specify a maximum string length of 100.
    using System.ComponentModel.DataAnnotations;
    
    namespace ContosoPizza.Models;
    
    public class Pizza
    {
        public int Id { get; set; }
    
        [Required]
        [MaxLength(100)]
        public string? Name { get; set; }
    
        public Sauce? Sauce { get; set; }
    
        public ICollection<Topping>? Toppings { get; set; }
    }
    
  2. In Models\Sauce.cs, make the following changes:

    1. Add a using directive for System.ComponentModel.DataAnnotations.
    2. Add a [Required] attribute before the Name property to mark the property as required.
    3. Add a [MaxLength(100)] attribute before the Name property to specify a maximum string length of 100.
    4. Add a bool property named IsVegan.
    using System.ComponentModel.DataAnnotations;
    
    namespace ContosoPizza.Models;
    
    public class Sauce
    {
        public int Id { get; set; }
    
        [Required]
        [MaxLength(100)]
        public string? Name { get; set; }
    
        public bool IsVegan { get; set; }
    }
    
  3. In Models\Topping.cs, make the following changes:

    1. Add using directives for System.ComponentModel.DataAnnotations and System.Text.Json.Serialization.

    2. Add a [Required] attribute before the Name property to mark the property as required.

    3. Add a [MaxLength(100)] attribute before the Name property to specify a maximum string length of 100.

    4. Add a decimal property named Calories immediately after the Name property.

    5. Add a Pizzas property of type ICollection<Pizza>? to make Pizza-Topping a many-to-many relationship.

    6. Add a [JsonIgnore] attribute to the Pizzas property.

      Important

      This is to prevent Topping entities from including the Pizzas property when the web API code serializes the response to JSON. Without this, a serialized collection of toppings would include a collection of every pizza that uses the topping. Each pizza in that collection would contain a collection of toppings, which each would again contain a collection of pizzas. This type of infinite loop is called a circular reference and can't be serialized.

    using System.ComponentModel.DataAnnotations;
    using System.Text.Json.Serialization;
    
    namespace ContosoPizza.Models;
    
    public class Topping
    {
        public int Id { get; set; }
    
        [Required]
        [MaxLength(100)]
        public string? Name { get; set; }
    
        public decimal Calories { get; set; }
    
        [JsonIgnore]
        public ICollection<Pizza>? Pizzas { get; set; }
    }
    
  4. Save all your changes and run dotnet build.

  5. Run the following command to generate a migration for creating the database tables:

    dotnet ef migrations add ModelRevisions --context PizzaContext
    

    A migration named ModelRevisions is created.

    Note

    The message An operation was scaffolded that may result in the loss of data. Please review the migration for accuracy is displayed. This is because we have changed the relationship from Pizza to Topping from one-to-many to many-to-many, which requires that an existing foreign key column is dropped. This is OK because we don't yet have any data in our database. However, in general it's a good idea to check the generated migration when this warning is displayed to make sure no data is deleted or truncated by the migration.

  6. Run the following command to apply the ModelRevisions migration:

    dotnet ef database update --context PizzaContext
    
  7. In the title bar of the SQLITE EXPLORER pane, select the Refresh Databases button.

    The Refresh Database button in the SQLite Explorer tab.

  8. In the SQLITE EXPLORER pane, right-click ContosoPizza.db. Select Show Table 'sqlite_master' to view the full database schema and constraints.

    Important

    The SQLite extension will re-use open SQLite tabs.

    • A PizzaTopping join table was created to represent the many-to-many relationship between pizzas and toppings.
    • New fields have been added to the Toppings and Sauces.
      • Calories is defined as a TEXT column because SQLite doesn't have a matching decimal type.
      • Similarly, IsVegan is defined as an INTEGER column. SQLite doesn't define a bool type.
      • In both cases, EF Core manages the translation.
    • The Name column in each table has been marked NOT NULL, but SQLite doesn't have a MaxLength constraint.

    Tip

    EF Core database providers handle mapping model schema to a particular database's features. While SQLite doesn't implement a corresponding constraint for MaxLength, other databases like SQL Server and PostgreSQL do.

  9. In the SQLITE EXPLORER pane, right-click the _EFMigrationsHistory table and select Show Table. The table contains a list of all migrations applied to the database. Since you've run two migrations, there are two entries: One for the InitialCreate migration, and another for ModelRevisions.

Note

This exercise used mapping attributes (data annotations) to map models to the database. As an alternative to mapping attributes, you can use the ModelBuilder fluent API to configure models. Both approaches are valid, but some developers prefer one approach over the other.

You've used migrations to define and update a database schema. In the next unit, you'll finish the methods in PizzaService that manipulate data.

Check your knowledge

1.

In an entity class, what is the property naming convention for a primary key?