是否可以通过另一个类的字段排序解析查询

时间:2018-07-16 16:15:49

标签: php parsing sdk

我很想知道是否有可能基于一个类订购一个解析查询,但是否按另一个类的字段对它进行了订购?

  1. 我有ClassA和ClassB
  2. ClassA的一列保存指向ClassB行的指针
  3. 我正在查询ClassA并包括ClassB BUT中的数据...当我尝试按ClassB中的字段排序时,出现异常。

代码是这样的:

$query = new ParseQuery('ClassA');
$query->includeKey('ClassB');
... // more conditions in the middle, equalTo and such
// classb is the name of the column that holds the pointer to classB 
$query->ascending('classb.field'); 
$query->find(); // Parse crashes here
// The Exception Message is the following: Invalid field name: classb_pointer.field.

是因为includeKeys是在查询运行后归档的,还是我做错了什么?

0 个答案:

没有答案