gpt4 book ai didi

Grails 创建标准不在列表中

转载 作者:行者123 更新时间:2023-12-04 18:07:28 25 4
gpt4 key购买 nike

如何获取不在域B中使用的列表A?

域A

Class A{
String name
String code
}

域B
Class B{
A aaa
String description
}

示例数据:
**domain A**

id+versioin+name +code+|
1 | 0 |Bobby |bob |
2 | 0 |anto |ant |
3 | 0 |Jessica|jes |
4 | 0 |hera |her |

**domain B**
id+version|a_id|description + |
1 | 0 | 1 |this is bobby |
2 | 0 | 3 |this is jessic|

我如何从 A 中获取未在 B 中使用的列表。
i tried this
def b = B.list()
def c = A.createCriteria()
def results = c.list {
not { 'in'(b) }
}

但失败..

最佳答案

def b = B.list()
def c = A.createCriteria()
def results = c.list {
not { 'in'("id",b*.aaa.id) }
}

关于Grails 创建标准不在列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23732399/

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