33. Getting item by id (Actor Details) | ASP.NET MVC

preview_player
Показать описание
------------------------------------------------------------------
A key feature in our app is to be able to get a single item by id. We get the items by id when we need to show the details of an item like actors, producers, cinemas, and movies.
In the ASP.NET MVC project, we are going to add a new method in ActorsService and also a new ActionResult in the ActorsController.
===================================
You can also watch my courses on:
===================================
===================================
00:00 - Welcome
00:15 - Adding new controller action
01:52- Adding Details view
04:25 - Updating GetById method in ActorsService
05:26 - Updating ActorsService and ActorsController with "Async"
06:47 - Updating Actors list buttons
08:15 - Testing and refactorings
11:06 - Thank you
===================================
#mvc #aspntemvc #csharp
Рекомендации по теме
Комментарии
Автор

NotImplementedException: The method or operation is not implemented.
in ActorsService.cs
+
throw new NotImplementedException();
in ActorsController.cs
+
var data = await _service.GetAllAsync();

can someone explain whats wrong here ?

Samurai-
Автор

when i click on the detail button it doesn't show the details of that actor I have followed every step but still its not working help me asap.

ims--priyanshudave
Автор

when i click details button dont show the image but all value s are showd

ReadLineAcademy