#855 - Fix @Aggregation lazy loading and base select issue

This commit is contained in:
Rob Bygrave
2016-11-06 22:18:23 +13:00
parent 2a6d38eef2
commit cbfce0d14d
2 changed files with 45 additions and 4 deletions
@@ -214,7 +214,9 @@ public class DeployBeanPropertyLists {
if (prop instanceof BeanPropertyCompound) {
baseCompound.add((BeanPropertyCompound) prop);
} else {
baseScalar.add(prop);
if (!prop.isAggregation()) {
baseScalar.add(prop);
}
}
}
}