-
Type: Improvement
-
Resolution: Unresolved
-
Priority: Unknown
-
None
-
Affects Version/s: None
-
Component/s: None
Right now to look up a single object by primary key, you have to make a full query and then do a findFirst().
It would be nice if you could do a direct lookup with a method like:
MyObject obj = realm.find(MyObject.class, objId);
(the Swift, C# and Javascript bindings all have methods like this)