-
Hi, I have a Realm class with a list of objects:
And the other Realm class with a
How can I perform an NSPredicate-based query that filters the results based on a comparison between I am looking for something such as:
...Where -NOW- would be... well, right now :) I can't find any documentation that describes what can be done with NSPredicates in Realm, except the very short cheatsheet (https://academy.realm.io/posts/nspredicate-cheatsheet/). Is there any? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You should be able to use |
Beta Was this translation helpful? Give feedback.
You should be able to use
myOwner.Dogs.Filter("SomeDateTime <= $0", DateTimeOffset.UtcNow
.