Hi,
I was wondering if it is possible to filter objects on an exact amount of elements in a collection on the object.
Here is an example:
Three tables:
Athlete 1---* Athlete2Medal *----1 Medal
The is m:n connection between Athlete and Medal and thus the AthleteEntity has a MedalCollection in the generated code.
Here is some sample Atheltes and their medals:
Schumacher {Gold, Silver, Bronce}
Raikkonen {Silver, Bronce}
Massa {Silver, Bronce}
Now I would like to find the Atheltes who have a MedalCollection that contains exactly {Silver, Bronce} which should yield Raikkonen and Massa, but not Schumacher.
How can I achieve this in LLBLGen (if it's even possible)?