如果我知道记录的 accountId,我可以执行以下操作:
Dim cols As New ColumnSet(New String() {"name",
"address1_postalcode",
"lastusedincampaign"})
Dim retrievedAccount As Account = _orgService.Retrieve("account", _accountId, cols).ToEntity(Of Account)()
但是如果我不知道 accountId 而是想根据其他因素搜索记录怎么办?比如说,返回所有以“John”为名字的记录?