これは私のコードです:
var distinctDateValues = dt.AsEnumerable()
.Select(row => new
{
Date = DateTime.Parse(row.Field<string>("DAY"))
})
.Distinct()
.ToList();
distinctDateValues.Sort(); // getting error on this line
distinctDateValues の値は次のとおりです。
私が得ているエラーは、「配列内の 2 つの要素を比較できませんでした」です。
ここで私が間違っていることを誰かに提案してもらえますか。distinctDateValues の日付列の値を並べ替えたい。