2
我正在嘗試構建一個與以下SQL查詢執行相同操作的FetchXML查詢。基本上,如果約會上的自定義屬性「dev_ownercommunityid」等於機會的ownerid屬性,則輸出機會名稱和鏈接約會的主題。FetchXML過濾器 - 比較兩個不同實體的屬性?
select top 10 o.[name], apt.[subject]
from Opportunity o with (nolock)
left join Appointment apt with (nolock)
on o.opportunityid = apt.regardingobjectid
where apt.dev_ownercommunityid = o.ownerid
/* dev_ownercommunityid is a custom attribute we added to appointment entity */
我可以輕鬆地做外部連接,但我無法弄清楚如何做「where」部分。
請給予幫助。我正在使用Dynamics CRM 2013.