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 ");