I am trying to populate a drop down list with a Linq query. However, I need to have FirstName and Surname as one field. Concatenating in the DDL.DataTextField returns a field not found error.
SQL would be something like this:
SELECT (FirstName + SPACE + Surname) AS FullName FROM Table WHERE ID=1
Current Linq:
public IList<mytable> GetNames(int p_ID)
{
return db.mytable.Where(c => c.ID_fk == p_ID).ToList();
}
