The Error seems The Return statement missing when you select an Items from the collection.
Example:
collection = nonLabors.Select(item =>
{
item.Travel_Miles = item.Travel_Miles_Original != null ? decimal.Parse(item.Travel_Miles_Original) : 0;
return item;
}).ToList();