我想使用Grails Criteria Projections获得两列的所有可能组合。
我尝试这样:
def criteria = {
projections{
property('colA')
property('colB')
}
}
def allCombinations = MyDomainEntity.createCriteria().list(criteria)
但是,该代码返回colA和colB的所有重复组合。
我也尝试使用
distinct
,但仅适用于单列。有解决这个问题的想法吗?
谢谢!
最佳答案
我不知道您尝试解决的真正问题,但是根据您所说的,您应该使用groupProperty
。
这是示例:
// Your domain class
class TestEntity {
String field1
String field2
}
// test distinct projection
class TestEntityTest extends GroovyTestCase {
void testDistinctByTwoColumns() {
new TestEntity(field1: 'test1', field2: 'test2').save()
new TestEntity(field1: 'test1', field2: 'test2').save() // duplicate
new TestEntity(field1: 'test1', field2: 'test2').save() // duplicate
new TestEntity(field1: 'test3', field2: 'test4').save()
final result = TestEntity.withCriteria {
projections {
groupProperty('field1')
groupProperty('field2')
}
}
assertEquals(2, result.size())
}
}
附言我使用Grails 2.5.5进行测试。也许您的版本有所不同,但我希望这个想法很明确。