Fix Eigenschaften in Mitglied Query #220
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Das Query der Mitglieder hat nicht funktioniert für die Verknüpfung "und" bei den Eigenschaften.
Die Implementierung für "oder" iteriert über alle Eigenschaften und schaut ob es mindestens einen Match gibt. Das passt.
Die Implementierung für "und" iteriert über alle Gruppen und schaut ob es in jeder Gruppe einen Match gibt. Das funktioniert aber nicht wenn eine Gruppe mehrere Eigenschaften hat weil es dem Code reicht wenn es für eine davon einen Match gibt. Es muss aber für alle sein. Also muss man statt >0 auf Gleichheit mit der Anzahl der Eigenschaften prüfen.
Man könnte sich auch die Schleife über die Gruppen sparen und wie bei "oder" direkt über die Eigenschaften iterieren.
Ich habe den Query Code korrigiert damit er auch "und" korrekt ausführt.