junior882 wrote:
Otis wrote:
It will fetch all entities using the filter specified, thus will not use an additional filter related to 'entity'.
Kind of a newbie, so bear with me. How would you go about applying a filter to the related collection?
entity.SomeCollection, like customer.Orders, is filled with the filter based on the relation between the two, in my example customer and order. So if I want all customer's orders, I call customer.Orders. If I want all customer's orders for a particular date range, I call customer.GetMultiOrders() with the overload which accepts an additional filter.
Please consult the reference manual in the llblgen pro folder for details on these methods.