diff --git a/aspnetcore/includes/mvc-intro/adding-model4.md b/aspnetcore/includes/mvc-intro/adding-model4.md index 943ccb608d..27262a20bb 100644 --- a/aspnetcore/includes/mvc-intro/adding-model4.md +++ b/aspnetcore/includes/mvc-intro/adding-model4.md @@ -1,4 +1,4 @@ -The highlighted code above shows the movie database context being added to the [Dependency Injection](xref:fundamentals/dependency-injection) container. The line following `services.AddDbContext(options =>` is not shown (see your code). It specifies the database to use and the connection string. `=>` is a [lambda operator](https://docs.microsoft.com/dotnet/articles/csharp/language-reference/operators/lambda-operator). +The highlighted code above shows the movie database context being added to the [Dependency Injection](xref:fundamentals/dependency-injection) container (In the *Startup.cs* file). `services.AddDbContext(options =>` specifies the database to use and the connection string. `=>` is a [lambda operator](https://docs.microsoft.com/dotnet/articles/csharp/language-reference/operators/lambda-operator). Open the *Controllers/MoviesController.cs* file and examine the constructor: