-
Type: Improvement
-
Resolution: Unresolved
-
Priority: Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: None
-
7228
-
SDK FY21-Q3.
Seems like RealmQuery.in and the extension method RealmQuery.oneOf is not implemented for binary fields (byte[]/ByteArray).
As far as I can see we could just add methods similar to the other types
RealmQuery.in(String fieldName, @Nullable byte[][] values) {
And the extension method
fun <T : RealmModel> RealmQuery<T>.oneOf(propertyName: String, value: Array<out ByteArray?>): RealmQuery<T>