Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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.
My code:Manager.cs
public IEnumerable
{
var getTracks = ds.Tracks
.Include("Album.Artist")
.Include("MediaType")
.OrderBy(a => a.Name)
.ToList();
//.SingleOrDefault(i => i.TrackId== id);
return mapper.Map
}
//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
Step: 1
To display the details of a specific track you can follow these steps Modify your Details action in ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started