public async Task <ActionResult> Query(String searchterm) { //String term = form["searchterm"].ToString(); //Netflix n = new Netflix(); SearchResults results = await Netflix.Search.Search(searchterm, Limit : 40);//Randomized(). ///need to check if the results are in the database and populate it if not ViewBag.MovieResults = GeneralHelpers.GetDatabaseMovies(results.MovieResults); ViewBag.PeopleResults = GeneralHelpers.GetDatabasePeople(results.PeopleResults); //ViewBag.SearchResults = results; ViewBag.Term = searchterm; return(View()); }