1
我需要使用與觸發器中的Contact和Account對象相關的查找字段。我查閱字段Account__c上的聯繫,但我不能獲得相關賬戶的接觸時,我喜歡寫東西Apex觸發器Salesforce
Map <Id,Account> acts = new Map<Id,Account>([Select Id,Name from Account where Id:=contact.Account__c]);
應該獲得在行爲的所有相關的帳戶,但它不工作..
我如何獲得相關帳戶?