2013-02-28 120 views
0

我試圖檢索現有實體的RelatedEntities集合,但每次都返回空值。不知道我在這裏錯過了什麼。任何幫助或任何其他解決方法來檢索RelatedEntities非常感謝。這裏是我的代碼片段:Dynamics CRM:檢索實體的相關實體

Entity existingAppointment = _service.Retrieve("appointment", id, new ColumnSet(true)); 
Console.WriteLine(existingAppointment.RelatedEntities.Count); 

回答

1

爲了實現這個目標,你必須使用RollupRequest,詳細信息請參閱here

相關問題