簡體   English   中英

如何在 MS Dynamics CRM 中獲取帳戶實體的關聯潛在客戶記錄

[英]How to fetch the associated Lead Records for an account entity in MS Dynamics CRM

如何在 MS Dynamics CRM 中獲取帳戶實體的關聯潛在客戶記錄。

if (collection != null && collection.Entities != null && collection.Entities.Count > 0)
            {
                /*Add method call here/
                contacts = collection.Entities.ToList();
            }

在這種情況下,您可以添加新方法的調用,該方法將為您收集關聯的潛在客戶記錄。 你有collection.Entities foreach(var Entity in collection.Entities)一樣循環它。 從那里你可以得到你需要的Id或者你會得到你需要的信息。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM