ado.net data entity problem

Posted by ognjenb on Stack Overflow See other posts from Stack Overflow or by ognjenb
Published on 2010-04-23T08:47:27Z Indexed on 2010/04/23 8:53 UTC
Read the original article Hit count: 179

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?

© Stack Overflow or respective owner

Related posts about ado.net-entity-data-model

Related posts about .NET