How to Fix Entity Framework Tolist Method Missing on Entity Class
If you want to use the ToList() method of an entity you need to import the namespace: using System.Linq;, else the method will not appear. ...
https://www.czetsuyatech.com/2010/12/c-missing-tolist-in-entity-class.html
If you want to use the ToList() method of an entity you need to import the namespace:
using System.Linq;, else the method will not appear.
Example
using System.Linq;, else the method will not appear.
Example
using System.Linq;
public class NorthWindDemo {
private NorthwindEntities _entities = new NorthwindEntities();
public ActionResult Index()
{
return View(_entities.ProductSet.ToList());
}
}




1 comment
Perfect!
Post a Comment