isOneOf
Selects documents for which this field is equal to one of the given values.
Example
class User(
val name: String,
val age: Int?,
)
collection.find {
User::name.isOneOf(listOf("Alfred", "Arthur"))
}
Content copied to clipboard
External resources
See also
Selects documents for which this field is equal to one of the given values.
Example
class User(
val name: String,
val age: Int?,
)
collection.find {
User::name.isOneOf("Alfred", "Arthur")
}
Content copied to clipboard