我想知道是否可以通过属性类的属性过滤来获取对象。
更具体地说,如果我有:
Person<br>
-BasicInformation basicInformation
BasicInformation<br>
-Integer identificationNumber
我想检索所有拥有的人identificationNumber = 9000000
我应该做这样的事情:
ParseQuery<Person> personQuery = ParseQuery.getQuery(Person.class);
personQuery.whereEqualTo("basicInformation.identificationNumber", 9000000);
但它不起作用。有任何想法吗?