mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#601 - Second Nested filterMany not executed but joined
This commit is contained in:
@@ -227,6 +227,7 @@ public class OrmQueryProperties implements Serializable {
|
||||
*/
|
||||
public void setFilterMany(SpiExpressionList<?> filterMany) {
|
||||
this.filterMany = filterMany;
|
||||
this.markForQueryJoin = true;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -269,7 +270,7 @@ public class OrmQueryProperties implements Serializable {
|
||||
return true;
|
||||
}
|
||||
// explicitly selected some properties
|
||||
return included != null;
|
||||
return included != null || filterMany != null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user