I do a sql query which returns a string - service name. this is the query:
IQueryable<string> query = from Comp in ServiceGroupdb.ServiceGroupes
where (Comp.GroupID == groupID)
select Comp.Name;
How do i get the string out of the query?