gpt4 book ai didi

c# - LINQ 查询中两个日期之间的日期范围

转载 作者:太空狗 更新时间:2023-10-29 23:10:12 24 4
gpt4 key购买 nike

我正在尝试编写一个选择查询,该查询返回输入日期范围介于 LINQ 查询中的两个日期字段之间的记录。

我的输入是:

  • date1 - 开始日期
  • date2 - 结束日期

我的数据库字段是

  • 约会开始
  • 约会结束

此外,我还想确保 14:00 - 15:00 的输入不会返回 15:00-16:00 的值。

return (from t1 in db.Appointments where (t1.AppointmentStart <= date2 && (t1.AppointmentEnd) >= date1)

如果有人可以帮助我,我将不胜感激。

最佳答案

我不是 100% 清楚您的要求。在您的开头行中,您要求输入“输入日期范围介于两个日期字段之间”的记录,但在“另外”行中,您暗示您不想返回约会开始日期不相等的记录输入的结束日期。我认为这是两个不同的要求,所以我会给你两个不同的问题。

第一个查询是:

    from t1 in db.Appointments
where date1 >= t1.AppointmentStart
where date2 <= t1.AppointmentEnd
select t1;

第二个查询是:

    from t1 in db.Appointments
where date2 > t1.AppointmentStart
where date1 < t1.AppointmentEnd
select t1;

第一个查询返回“包含”输入日期的记录。

第二个查询返回与输入日期“重叠”的记录。

我认为您想要重叠查询更有意义,并且这个查询将满足您的“14:00 - 15:00 不返回 15:00-16:00 的值”要求。

如果我在理解您的要求时出错并需要进行任何更改,请告诉我。

关于c# - LINQ 查询中两个日期之间的日期范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7815235/

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