Cannot implicitly convert type system linq IQueryable to system collections generic List
Unable to fetch Data from View Model Controller to View,i have properly checked the working of query in LINQpad. However I am missing the conversion of the output of query which can be displayable in View. I have three Data Models Products,Images,Specifications which i combined into ViewModel with only selected properties and want to displaythe same. public class ViewModelController : Controller { private OMSEntities db = new OMSEntities(); // GET: ViewModel public ActionResult Index() { var product = new Product(); var prices = new Price(); var orders = new Order();