Dataverse – View-Fetch XML

This managed solution tool allows you to view Fetch XML in pop-up dialog without downloading in Advanced Find as well as generate the JavaScript for Fetch Xml and Web API (developed by Phước Lê Văn). As a developer, usually we get the Fetch XML from Advanced Find But this involves many steps like downloading the Fetch … Continue reading Dataverse – View-Fetch XML

Compare column field values in Dynamics365

Column values comparison is the new feature added recently. We can now compare 2 column field values in the conditions using Fetch XML, Query Expressions, Web API We can only compare column fields of same data type. Ex: firstname and lastname Comparing text column fields using Fetch XML Change valueof instead of value in the … Continue reading Compare column field values in Dynamics365

Get value of XML Tag from the Fetch XML String in C#

We have a scenario to get the value of the tag in XML, so here is how you can get the required value from the XML. Fetch XML var fetchXML = @"<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'> <entity name='account'> <attribute name='name' /> <attribute name='address1_city' /> <attribute name='primarycontactid' /> <attribute name='telephone1' /> <attribute name='accountid' /> <order attribute='name' … Continue reading Get value of XML Tag from the Fetch XML String in C#