How can i create a fetchxml query where the linked entity is filtered based on the parent entity. see the bold, red condition below. How can I achieve that??
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true' > <entity name='entity1' > <attribute name='entity1_primaryid' /> <link-entity name='entity2' from='entity2_relationshipfield' to='entity1_primaryid'
link-type='outer' > <filter type='and' > <condition entityname='entity2' attribute='createddate' operator='eq'
value="enity1_datecreated"+5days /> </filter> </link-entity> </entity> </fetch>
*This post is locked for comments