我有以下方法,我计划返回一堆不同的日期时间对象。不同的我是指独特的日子(不包括时间)。
问题是, DateTime 对象有不同的时间,因此即使它们是同一天,它们也被评估为唯一的。
如何让查询忽略日期的时间部分并仅评估日期的唯一性?
public List<DateTime> DistinctNoticeDates()
{
return (from notices in this.GetTable<Notice>()
orderby notices.Notice_DatePlanned descending
select notices.Notice_DatePlanned).Distinct().ToList();
}
谢谢。