Я обращаюсь к динамическим данным CRM через fetchxml в C#. Когда я пытаюсь выполнить следующий запрос, я становлюсь ниже ошибки.CRM fetchxml - AggregateQueryRecordLimit превышен
AggregateQueryRecordLimit превышен. Не удается выполнить эту операцию.
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false' aggregate='true'>
<entity name='productclass'>
<attribute name='classificationidid' groupby='true' alias='classidid'/>
<attribute name='productidid' aggregate='count' alias='ProductCount' />
<filter type='and'>
<condition attribute='classidid' operator='in'>" + cIds + @"</condition>
</filter>
</entity>
Как решить эту проблему?