fetch orderby sort crm link entity – CRM Kitchen http://crmkitchen.com Microsoft Dynamic CRM Tue, 25 Oct 2016 14:58:06 +0000 en-US hourly 1 https://wordpress.org/?v=4.6.1 Querying Order By Link Entity with Fetch XML http://crmkitchen.com/querying-order-link-entity-fetch-xml/ http://crmkitchen.com/querying-order-link-entity-fetch-xml/#respond Mon, 26 Sep 2016 09:02:07 +0000 http://crmkitchen.com/?p=345 If you want to sort the results based from linked data, we can add order by link entity’s attribute like this : [crayon-5866b61c27b74001353920/]    

The post Querying Order By Link Entity with Fetch XML appeared first on CRM Kitchen.

]]>
If you want to sort the results based from linked data, we can add order by link entity’s attribute like this :

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
  <entity name="contact">
    <attribute name="fullname" />
    <attribute name="telephone1" />
    <attribute name="contactid" />
    <link-entity name="contactquotes" from="contactid" to="contactid" visible="false" intersect="true">
      <link-entity name="quote" from="quoteid" to="quoteid" alias="aa">
		<order attribute="createdon" descending="false" />
	  </link-entity>
    </link-entity>
  </entity>
</fetch>

 

 

The post Querying Order By Link Entity with Fetch XML appeared first on CRM Kitchen.

]]>
http://crmkitchen.com/querying-order-link-entity-fetch-xml/feed/ 0