gpt4 book ai didi

grails - 数据库功能查询到Gorm字段的结果

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

在Grails / Groovy中,我在Model中定义了数据库字段,我使用MyModel.createCriteria().list(...)获取查询结果-正常!

但是除了字段,我还需要数据库功能的值(value)。 SQL模拟将是:
SELECT foo, bar, calculate_stuff(foo) FROM baz;
我可以将对域的数据库函数调用的结果包括为瞬时值吗?

最佳答案

您可以使用此属性的formulamapping完成此操作。这称为派生属性。您可以在documentation中了解更多信息。

例如:

class Baz {
String foo
String bar
Long thing

mapping {
thing formula: "calculate_stuff(foo)"
}

}

关于grails - 数据库功能查询到Gorm字段的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52833986/

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