Async Queries
This is not going to land before 1.0 and doesn't appear to be a blocker.
Any updates on this one? Seems like a core feature (findAllAsync in other APIs) which is missing from the .NET api.
We don't have an API for this in .NET yet, but you can achieve the same effect if you use collection notifications using SubscribeForNotifications. This will execute the query on a worker thread and invoke the callback first with the entire collection, and then with any subsequent changes as they're detected. What you can do is build up a query, call SubscribeForNotifications and in the callback dispose of the notification token and use the results of the query.
thank you, this is what i was looking for. i missed the fact i can get a RealmCollection from an IQueryable.