// GET: Toy public ActionResult Index() { MongoDB db = new MongoDB(); var toys = db.GetAllToy(); Toys model = new Toys(); model.EntityList = toys.ToList(); return(View(model)); }