我有一个遗留模式,其中在 hasMany 关联的子端有有效的日期记录。在这种情况下,我希望从父对象的结果中排除结束日期的记录,并试图避免 N+1 查询解决方案。
我可以像这样过滤它们并生成一个适当的查询:
def companyStaffList = CompanyStaff.findAll ( [ max: params.max, sort: params.sort, order: params.order ] ) {
companyID == params.id &&
compRecords { effectiveDate < new Date() && endDate > new Date() }
}
生成的查询具有连接和过滤器:
select [ ...the base fields + the associated fields... ] from company_staff
this_ inner join person_compensation comprecord1_ on
this_.personID=comprecord1_.personID where
(this_.companyID=? and ((comprecord1_.effectiveDate<? and comprecord1_.endDate>?)))
order by this_.lName asc limit ?
不幸的是,一旦我开始访问关联的字段,我看到第二个查询不传播过滤条件:
select [ the associated fields ] from person_compensation
comprecord0_ where comprecord0_.personID=?
请告知是否有原则性的方法可以做到这一点,或者我只是要求太多。