ado.net data entity problem
- by ognjenb
I have this error
Cannot implicitly convert type 'System.Linq.IQueryable' to 'Mvc.Models.engineer'. An explicit conversion exists (are you missing a cast?)
after write this code
engineer Ing = new engineer();
Ing = from j in testPersons.ibekoengineer
select j.Name;
What is wrong?