gpt4 book ai didi

c# - 如何在 C# 中检索基于昨天日期的记录?

转载 作者:太空宇宙 更新时间:2023-11-03 18:16:37 25 4
gpt4 key购买 nike

Date_Of_Event.Date <= DateTime.Today.Date.AddDays(-1))

最佳答案

你有倒退的比较

// This should work in LINQ-to-SQL / EntityFramework
Date_Of_Event >= DateTime.Today.AddDays(-1)
&&
Date_Of_Event < DateTime.Today

// This will work in LINQ-to-Objects or anywhere else, really.
Date_Of_Event.Date == DateTime.Today.AddDays(-1)

作为旁注,将 DateTime.Today 的值存储在一个变量中可能是个好主意,这样奇怪的错误就不会在午夜(或晚上 11:00 或凌晨 1:00,具体取决于夏令时)。

关于c# - 如何在 C# 中检索基于昨天日期的记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5232880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com