Trying to get a list of Jobs

Im trying to get a list of jobs i think i am close but not sure what i am missing thanks in advance.

var JobList = string.Empty;
 if (varProjectID != "")
 {
  JobList = (from row in Db.JobHead where row.ProjectID == varProjectID && row.JobComplete == false select row.JobNum).ToList();
 }
CallContext.Current.ExceptionManager.AddBLException("The following Jobs: " + JobList + " jobs that are open ");

Can you assign a ToList value to a string?

not that you mention it probably not.

I think you want var JobList = new List<string>()

I would just query the jobs you wanted through the Job Entry search box, and export them to Excel right from the search result.

Voila’ - a list of jobs!