我需要在 CRM 插件中使用 fetch xml,我在这里找到了一个关于如何做到这一点的示例:
string groupby1 = @"
<fetch distinct='false' mapping='logical' aggregate='true'>
<entity name='opportunity'>
<attribute name='name' alias='opportunity_count' aggregate='countcolumn' />
<attribute name='ownerid' alias='ownerid' groupby='true' />
<attribute name='createdon' alias='createdon' />
<attribute name='customerid' alias='customerid' />
</entity>
</fetch>";
EntityCollection groupby1_result = orgProxy.RetrieveMultiple(new FetchExpression(groupby1));
但是还有其他东西我不知道如何使用,或者它在哪里使用..它的部分说:
orgProxy.RetrieveMultiple(new FetchExpression(groupby1));
我知道它是OrganizationServiceProxy的一个对象,但它在插件类中的什么位置?我查不出来。