From abf1465c827fffe4a298ffc37a289c50879f9b56 Mon Sep 17 00:00:00 2001 From: Bader Nasser Al-Hashmi Date: Tue, 5 Sep 2017 18:35:35 +0400 Subject: [PATCH] Fix controller's filename in ef-mvc tutorial (#4183) --- aspnetcore/data/ef-mvc/concurrency.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-mvc/concurrency.md b/aspnetcore/data/ef-mvc/concurrency.md index cb0a48c5ed..4dd4887c17 100644 --- a/aspnetcore/data/ef-mvc/concurrency.md +++ b/aspnetcore/data/ef-mvc/concurrency.md @@ -208,7 +208,7 @@ For the Delete page, the Entity Framework detects concurrency conflicts caused b ### Update the Delete methods in the Departments controller -In *DepartmentController.cs*, replace the HttpGet `Delete` method with the following code: +In *DepartmentsController.cs*, replace the HttpGet `Delete` method with the following code: [!code-csharp[Main](intro/samples/cu/Controllers/DepartmentsController.cs?name=snippet_DeleteGet&highlight=1,14-17,21-29)]