Hi,
I don't think it does. But you could get that information by doing a retrieval on the ChildEntity table and filtering on the ParentEntity using a RelationCollection (joins).
For example if you wanted all products sold to Customer A in Period X till Y you could retrieve all OrderDetailEntities based on a filter on the Orders
(Order.Customer == A && Order.Date > X && Order.Date < Y).
Would this be a solution?
Cheers,
Gab