Is there a (fairly) simple explanation of why I can't do this:
var EmpList = from emp in context.Employees orderby emp.LastName select new { Name = emp.FirstName + " " + emp.LastName }; And further, is it possible to achieve this in the query or do I have to do this kind of processing after, with a foreach or something similar?
Thanks..