using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using InstaVibe.Models; namespace InstaVibe.Controllers { public class ExploreController : Controller { public ActionResult Index() { var posts = DatabaseHelper.GetExplorePosts(); // GetPosts() custom method hai jo List return karta hoga return View(posts); } } }