我有以下方法,我计划返回一堆不同的日期时间对象。“独特的我”是指独特的日子(不包括时间)。
问题是,DateTime对象有不同的时间,因此即使它们是同一天,它们的计算也是唯一的。
如何让查询忽略日期的时间部分,而只评估日期的唯一性?

    public List<DateTime> DistinctNoticeDates()
    {
        return (from notices in this.GetTable<Notice>()
                orderby notices.Notice_DatePlanned descending
                select notices.Notice_DatePlanned).Distinct().ToList();
    }

谢谢。

最佳答案

尝试使用Date属性来获取DateTime结构的日期:

public List<DateTime> DistinctNoticeDates()
{
    return (from notices in this.GetTable<Notice>()
            orderby notices.Notice_DatePlanned descending
            select notices.Notice_DatePlanned.Date)
            .Distinct()
            .ToList();
}

10-05 23:46