我应该使用哪个类来保存ef和asp.net核心的日期(没有时间)(使用数据库postgres)? DateTimeOffset总是试图节省时间。
public class something
{
[Column(TypeName="date")]
[Required]
public DateTimeOffset StartDate { get; set; }
}
答案 0 :(得分:3)
将StartDate
更改为DateTime
,而不是DateTimeOffSet
:
public DateTime StartDate { get; set; }
然后,您可以使用StartDate.Date
(DateTime.Date
)。
答案 1 :(得分:0)
使用DateTime.Date属性。
StartDate.Date