只有日期而没有时间的订单列表

本文关键字:单列表 列表 日期 没有时间 | 更新日期: 2023-09-27 18:05:47

我有IList<customClass>

My CustomClass: CreatedDate(DateTime), Name(string), Number(int)

我用OrderBy(p => p.CreatedDate)

我的问题:我如何自定义或找到一种方法来订购CreatedDate只是只有日期,不包括时间时订购?

只有日期而没有时间的订单列表

给定CreatedDateDateTime类型,您可以执行以下操作。

OrderBy(p => p.CreatedDate.Date)