If you can create the filter properly, you should be able to pass the filter into the prefetch path.
I'm not sure how the group by collection would work then, although you can specify additional filter relations in the prefetch as well, which might allow for this.
Two other options that might be easier:
- Create a view for purchaserequests that applies your criteria, then generate it as an entity that relates 1-1 with the existing purchase request entity (the table). Now set your prefetch to get the view first, then the table.
<parent object> ---> <view entity> ---> <table entity>
Now you will only purchase requests that match the criteria set forth in the view.
- Use a FieldCompareSetPredicate to determine which purchase request rows/entities to return, and pass this into the prefetch path for purchase requests. The FieldCompareSetPredicate is basically like using an IN clause in SQL.
This would look something like (pseudocode):
SELECT
purchaserequest.id
FROM
purchaserequest
WHERE
purchaserequest.id IN
(SELECT purchaserequestid FROM purchaserequestvendorgroup WHERE <criteria>)
I think either of these options would work. I'm curious whether the original solution could be made to work (creating a predicate with having/groupby and additional relations, then adding it to the prefetch).
Note: the above is assuming that you are fetching this collection as part of a larger graph. If your base object is PurchaseRequest, and you are fetching a collection of them, you would add the filter to the fetch (FetchEntityCollection) and not the prefetch path.