hi, i I do not find this code in the downloadable code for this book ,it is present on page 112
Code:
public ActionResult Search(string q)
{
}
var albums = storeDB.Albums .Include("Artist")
.Where(a => a.Title.Contains(q))
.Take(10); return View(albums);"