My Profile
class has a collection attribute.
class Profile {
private List<String> aliases;
}
How can I query for selecting Profile
s whose aliases
contains any of given collection?
Say, selecting profiles whose aliases contains any of [a
, b
, c
]?
or