Grails Criteria Projections - 两个属性的不同投影

Grails Criteria Projections - Distinct Projection by two properties

我想使用 Grails Criteria Projections 获取两列的所有可能组合。

我试试这个:

def criteria = {
   projections{
        property('colA')
        property('colB')
   }
}

def allCombinations = MyDomainEntity.createCriteria().list(criteria)

但是,该代码 returns 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())
    }
}

P.S。我使用 Grails 2.5.5 进行测试。也许你的版本有点不同,但我希望思路清晰。