Convert FetchXML to QueryExpression in Dynamics 365 with Web API Example
In this post, we will go through an example of converting FetchXML to a QueryExpression. We will do this by debugging a Web API call in a plugin. To debug Web API calls using the Plugin Registration Tool, do the following. First, create a Web API query, e.g. select the name and revenue fields in the accounts entity filtered by name. E.g. https://yourorg.api.crm.dynamics.com/api/data/v9.1/accounts?$select=name,revenue&$filter=name eq ‘3M’ In Visual Studio, create a new … Continue reading Convert FetchXML to QueryExpression in Dynamics 365 with Web API Example