Replies: 3 comments 14 replies
-
The signature of As you can see, each Having very little information on what you're trying to do, I'll try to guess that var results = Realm.All<MyObject>().Filter("(State == $0) OR (State == $1)", "value1", "value2"); If you were looking for something completely different, then I'd need more info on your models to be able to help. Also, it could be of great help to you to take a look at this tutorial. Although it's javascript tutorial, the syntax in the I hope this helps. |
Beta Was this translation helpful? Give feedback.
-
I am looking to get the equivalent of an SQL IN operator.
|
Beta Was this translation helpful? Give feedback.
-
I managed to make filter into
https://www.mongodb.com/docs/realm/realm-query-language/#query-formats |
Beta Was this translation helpful? Give feedback.
-
Hi,
I would like to filter a table based on some property being IN a list I would provide, using an NSPredicate-based query, such as:
It's complaining about:
CS1503 Argument 3: cannot convert from 'System.Collections.Generic.List<string>' to 'Realms.RealmValue'
Any idea?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions