Hi ,
I have storing my document on sharepoint . As you know that Entity "SharePointDocument" stores document record in Dynamics 365 CRM.
so i want to build some reporting on all documents stored in this Dynamics Entity.
So i tried to build plugin for that and tried to retrieve multiple records from this entity in plugin but its returing zero records. Why it is so ?
Below is line of code i wrote for retrieve multiple document.
var documentsQuery = new QueryExpression
{
EntityName = "sharepointdocument",
ColumnSet = new ColumnSet(true),
};
DataCollection<Entity> docRecords = service.RetrieveMultiple(documentsQuery).Entities;
Any Help will be appreciated.
Thanks