From 65063d28980f20bab4c5bedc0a57a21dea0af266 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Fri, 16 Dec 2016 20:54:17 -1000 Subject: [PATCH] Update working-with-sql.md (#2414) --- aspnetcore/tutorials/first-mvc-app/working-with-sql.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aspnetcore/tutorials/first-mvc-app/working-with-sql.md b/aspnetcore/tutorials/first-mvc-app/working-with-sql.md index 72df365646..cd0258cb6f 100644 --- a/aspnetcore/tutorials/first-mvc-app/working-with-sql.md +++ b/aspnetcore/tutorials/first-mvc-app/working-with-sql.md @@ -14,6 +14,8 @@ uid: tutorials/first-mvc-app/working-with-sql --- # Working with SQL Server LocalDB +By [Rick Anderson](https://twitter.com/RickAndMSFT) + The `ApplicationDbContext` class handles the task of connecting to the database and mapping `Movie` objects to database records. The database context is registered with the [Dependency Injection](../../fundamentals/dependency-injection.md) container in the `ConfigureServices` method in the *Startup.cs* file: [!code-csharp[Main](start-mvc/sample2/src/MvcMovie/Startup.cs?name=snippet_details)]