具有 2 个日期时间条件的 linq where 子句

发布于 2024-11-06 11:31:14 字数 292 浏览 0 评论 0原文

我有一个看起来像这样的Where子句:

where p.Appoint.Date > TheStartTime.Date && p.Appoint.Date < TheEndTime.Date

出于某种原因,它返回0。但是,如果我写这个

where p.Appoint.Date == TheStartTime.Date

它会返回一个计数(尽管不是我想要的)。我做错了什么?

感谢您的建议。

I have a Where clause that looks like this:

where p.Appoint.Date > TheStartTime.Date && p.Appoint.Date < TheEndTime.Date

For some reason, it's returning 0. However, if I write this

where p.Appoint.Date == TheStartTime.Date

it returns a count (not the one I want though). What am I doing wrong?

Thanks for your suggestions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

从﹋此江山别 2024-11-13 11:31:14

当做这样的事情时,使用 Ticks 来

比较两个数字总是更容易。

When doing things like this it's always easier to use Ticks

that way you're comparing between two numbers.

伪装你 2024-11-13 11:31:14

好的,我明白了:

 a) use >= and <= 
 b) remove the .Date

ok, I got it:

 a) use >= and <= 
 b) remove the .Date
无语# 2024-11-13 11:31:14

您的第一个子句具有唯一的上限和下限。例如,如果您的较低日期是上午 8:30,则这不会匹配准确时间为上午 8:30 的记录,仅匹配那些的记录。

您的第二个子句正在寻找完全匹配。如果您想要包含边界,请使用>=<=而不是><。

Your first clause has exclusive upper and lower bounds. So for example if your lower date is 8:30 AM, this will not match records with an exact time of 8:30 AM, only those later than that.

Your second clause is looking for an exact match. If you want inclusive bounds, go with >= and <= instead of > and <.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文