Fix controller's filename in ef-mvc tutorial (#4183)

pull/4209/head
Bader Nasser Al-Hashmi 2017-09-05 18:35:35 +04:00 committed by Scott Addie
parent 95b731a252
commit abf1465c82
1 changed files with 1 additions and 1 deletions

View File

@ -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)]