Another question about realm.
I have this structure;
Class A has a class B which has a String name.
I want to sort the list of Class A by B b that has a name "xy";
so this is how I tried but does not works.
realm.where(A.class).findAllSorted("b.name",true);
This says that there is no field B.name.
Any ideas how could I make it works?
Thanks.