gpt4 book ai didi

hibernate - Grails( hibernate )条件查询

转载 作者:行者123 更新时间:2023-12-02 14:05:07 24 4
gpt4 key购买 nike

我的Grails应用程序中有一个域类,如下所示:

class Event {
Date date
}

我想编写一个条件查询,以选择在某年的某月中发生的事件,有什么建议吗?

谢谢,

最佳答案

您可能只使用between:

def firstDayOfMonthInYear, lastDayOfMonthInYear;

/* set the two values using Calendar or some other mechanism */

Event.withCriteria {
between('date', firstDayOfMonthInYear, lastDayOfMonthInYear)
}

我不确定 between的包容性-如果两端都不是包容性的,您可能需要调整开始/结束日期。

关于hibernate - Grails( hibernate )条件查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3953902/

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