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.

Example
using System.Linq;

public class NorthWindDemo {
  private NorthwindEntities _entities = new NorthwindEntities();
  public ActionResult Index()
  {
    return View(_entities.ProductSet.ToList());
  }
}

1 تعليقات

أحدث أقدم