CRMプラグインでfetchxmlを使用する必要がありますが、その方法の例をここで見つけました。
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のオブジェクトであることは知っていますが、プラグインクラスのどこにありますか?わかりませんでした。