gpt4 book ai didi

grails - 带有条件和/或案例的网格?

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

我有以下Grails withCriteria结构:

allInfo = Scholarship.withCriteria {
between('gpa', '0', gpa)
grades {
idEq year
}
scholarshipCounties {
eq('county.id', county)
}
majors {
idEq major
}
activities {
idEq activity
}
eq('specialTypeInd', special)
}

我想让它返回按(gpa AND成绩和专业)或奖学金国家或 Activity 或specialTypeInd的奖学金。

最佳答案

您应该分别使用or{}and{}子句:

allInfo = Scholarship.withCriteria {
and{
between('gpa', '0', gpa)
grades {
idEq year
}
majors {
idEq major
}
}
or{
scholarshipCounties {
eq('county.id', county)
}

activities {
idEq activity
}
eq('specialTypeInd', special)
}
}

关于grails - 带有条件和/或案例的网格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29421347/

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