public ActionResult Create(int artistId, string recordName) { Dictionary <string, object> artistRecords = new Dictionary <string, object>(); Artists foundArtist = Artists.Find(artistId); Records newRecord = new Records(recordName); foundArtist.AddRecord(newRecord); List <Records> discography = foundArtist.Records; artistRecords.Add("records", discography); artistRecords.Add("artists", foundArtist); return(View("Show", artistRecords)); }