I get this error for the linq below.
Error: at least one object must implement icomparable
var minDate1 = (from c in DataAccess.VolunteerHistoryDataSet.Tables[0].AsEnumerable()
where c["ServiceDateStart"] != DBNull.Value
orderby c["ServiceID"], c["ServiceDateStart"]
select new
{
Date = Convert.ToDateTime(c["ServiceDateStart"])
}).ToList().Min();