gpt4 book ai didi

grails - GORM grails withCriteria查询

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

我有3个域:
1)用户
2)个人资料
3)医生

1)医生扩展用户
2)用户具有一个配置文件

class User {
String username
String password
static hasOne = [profile: Profile]
}

class Profile {
String fullName
String address
String cellno
}

class Doctor {
String workLocation
String specialization
}

如何编写一个GORM查询以列出所有基于专长和 workLocation的医生及其名字 profile.fullName

最佳答案

由于Doctor扩展了User,因此我假设Doctor域类如下所示:

class Doctor extends User {
String workLocation
String specialization
}

您可以使用GORM查询获取 Doctor实例列表,如下所示:
def location = 'someWorkLocation'
def spec = 'someSpecialization'

def doctors = Doctor.withCriteria {
eq 'specialization', spec
eq 'workLocation', location
}.list()

上面的查询使用 eq()方法指定 WHERE条件。如果要使用全名而不是 Doctor实例,则需要一个投影:
def names = doctors.withCriteria {
eq 'specialization', spec
eq 'workLocation', location

projections {
profile {
property 'fullName'
}
}
}

投影实质上是查询的 SELECT部分。

关于grails - GORM grails withCriteria查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33595733/

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