我正在为查询而苦苦挣扎,我想选择所有分支机构,然后再次“加入”公司(帐户类型),其中的联系人。直到现在还没有运气,我做错了什么?
SELECT
b.Id, b.Location,
(SELECT FirstName, LastName, FROM b.Companies.Contacts
//i've tried combinations of __r and __c
WHERE City == 'New York')
FROM Branche__c b
我这部分的 WSDL 是这样构建的:
<complexType name="Branche__c"> .. <element name="Companies__r" nillable="true" minOccurs="0" type="ens:Account"/> .. </complexType> .. <complexType name="帐户"> .. <element name="Contacts" nillable="true" minOccurs="0" type="tns:QueryResult"/> .. </complexType>