Question: How do i display the Track details? - The web app will work for get all tracks and get one track. Example images are shown

How do i display the Track details?


- The web app will work for "get all" tracks and "get one" track. Example images are shown on the next page.

Playlist Editor Home Albums List of tracks Create New Track name ugo"40" "Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro #

My code:

Manager.cs

 public IEnumerable TrackGetAllWithDetail() //do i have this? (int? id)
       {
           var getTracks = ds.Tracks
               .Include("Album.Artist")
               .Include("MediaType")
               .OrderBy(a => a.Name)
               .ToList();
               //.SingleOrDefault(i => i.TrackId== id);
           return mapper.Map>(getTracks);
       }

       //add function TrackAdd public TrackAdd
Controller

 public class TracksController : Controller
   {
       private Manager m = new Manager();
       // GET: Track
       public ActionResult Index()
       {
           var track = m.TrackGetAllWithDetail();
           return View(track);
       }
       //GET: Track/Details/5
       public ActionResult Details()
           //TODO details isn't show up? figure out why
       {
           var track = m.TrackGetAllWithDetail();//(id.GetValueOrDefault());
           if (track == null)
           {
               return HttpNotFound();
           }
           else
           {
               return View(track);
           }
       }
 

My index view is getting from TrackWithDetailViewModel but then what do I do for the details page?

Playlist Editor Home Albums List of tracks Create New Track name ugo "40" "Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro # 1 Zero #9 Dream Artists Media Types Composer U2 Wolfgang Amadeus Mozart Comell, Commerford, Morello, Wilk Tracks Playlists Length (ms) price 2782333 1.99 Unit Album title 157962 0.99 348971 0.99 299102 278312 0.99 Lost, Season 2 War Sir Neville Marriner. A Celebration Out Of Exile 0.99 Instant Karma: The Amnesty International Campaign to Save Darfur Artist name Lost U2 Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner Audioslave U2 Media type Protected MPEG-4 video file MPEG audio file Protected AAC audio file MPEG audio file Protected AAC audio file Details Details Details Details Details

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To display the details of a specific track you can follow these steps Modify your Details action in ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!