I have a member
table with columns
memberid
Firstname( values like john,pop...)
secondname(values like ..david ,rambo..)
i want to get the firstname and secondname in a single query
i want something like this..
john david
pop rambo
i know how to do in mysql like this..
string sql = select (Firstname,'',secondname) as fullname from members...
but i dont know how to get the full name using linq to entities ...
my entity name is dbcontext
would any one help on this..
Many thanks In advance..