我是新手,很抱歉这个q。
我在 MDR 中有 2 个对象:Child_ c 和联系人。我有一个包含contact_id的子_c 记录列表。从联系人对象中,我需要获取 firstName、lastName、Id(其中 = 是 child 中的 contact_id)。我的查询是错误的。有人可以帮我吗???
谢谢!
列表 peopleInEventContactInfo = new List ();
for (Contact c: [ select firstname, lastname, Id, ytd__c from Contact where id in ContactIds ]){ peopleInEventContactInfo.add(c); }