کد زیر را که نمایش فیلدهای جدول است در کنترلر نوشته ام
public ActionResult Index()
{
var listOfPersonal =
(from Personals in db.Personals
select new Person
{
FirstName = Personals.FirstName,
LastName = Personals.LastName,
Phone = Personals.Phone
}).ToList();

return View(listOfPersonal);
}

هنگام اجرا با Error زیر مواجه می شود:

An exception of type 'System.NotSupportedException' occurred in EntityFramework.SqlServer.dll but was not handled in user code

Additional information: The entity or complex type 'ContosoUniversity.DAL.Personal' cannot be constructed in a LINQ to